docs: Add Artemis II photo to hero section

Because it's cool!
This commit is contained in:
Aaron
2026-04-10 17:12:00 -05:00
parent 65c3c7eba9
commit 70fdb04db5
3 changed files with 27 additions and 1 deletions
+26
View File
@@ -66,3 +66,29 @@ body {
.dark .dark-netlify {
display: inline;
}
/* Add Aaron's favorite pic from Artemis II to the hero section because it's cool. */
.dark .VPHome::before {
content: '';
background-image: url('/assets/art002e009298.jpg');
opacity: 50%;
position: absolute;
width: 100vw;
height: 110vh;
background-size: cover;
background-position: 90%;
pointer-events: none;
}
.dark .VPHome::after {
content: '';
position: absolute;
width: 100vw;
height: 10vh;
top: 100vh;
background: linear-gradient(to bottom, transparent, var(--vp-c-bg));
pointer-events: none;
z-index: 0;
}
.item {
z-index: 1;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

+1 -1
View File
@@ -311,7 +311,7 @@ function addEntrypoints(
if (options) {
const page = getEntrypointBundlePath(options, wxt.config.outDir, '.html');
manifest.options_ui = {
open_in_tab: options.options.openInTab,
open_in_tab: options.options.openInTab ?? false,
// @ts-expect-error: Not typed by @wxt-dev/browser, but supported by Firefox
browser_style:
wxt.config.browser === 'firefox'