diff --git a/site/src/components/BannerInit.astro b/site/src/components/BannerInit.astro new file mode 100644 index 00000000..c08e93cd --- /dev/null +++ b/site/src/components/BannerInit.astro @@ -0,0 +1,11 @@ +--- +import { BANNER_DISMISS_KEY } from '@/consts'; +--- + + diff --git a/site/src/components/Footer.astro b/site/src/components/Footer.astro index 60fb0b7c..098d91a3 100644 --- a/site/src/components/Footer.astro +++ b/site/src/components/Footer.astro @@ -15,6 +15,7 @@ type NavLink = { const navLinks: NavLink[] = [ { href: '/blog', label: 'Blog' }, { href: '/privacy', label: 'Privacy' }, + { href: 'https://legacy.videojs.org', label: 'V8', external: true }, ]; type Props = { @@ -36,7 +37,7 @@ const { class: className } = Astro.props; class="flex flex-col gap-0 text-faded-black md:-ml-5 md:flex-row dark:text-manila-light" >
( {link.label} {link.external ? : null} diff --git a/site/src/components/FooterDocs.astro b/site/src/components/FooterDocs.astro index e393a513..61beb222 100644 --- a/site/src/components/FooterDocs.astro +++ b/site/src/components/FooterDocs.astro @@ -15,6 +15,7 @@ type NavLink = { const navLinks: NavLink[] = [ { href: '/blog', label: 'Blog' }, { href: '/privacy', label: 'Privacy' }, + { href: 'https://legacy.videojs.org', label: 'V8', external: true }, ]; type Props = { @@ -23,19 +24,24 @@ type Props = { const { class: className } = Astro.props; --- -