Skip to content

Commit 12b1737

Browse files
committed
fix asset paths, update banner
1 parent 7bb7cfe commit 12b1737

File tree

7 files changed

+23
-1872
lines changed

7 files changed

+23
-1872
lines changed

src/components/layout.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ export const Layout = ({
1616
const bannerTitle = 'Check out the new blog post!:'
1717
// The first link will be the main description for the banner
1818
const bannerDescription = (
19-
<Link href='/blog/xarray-biology' fontWeight='medium'>
19+
<Link href='/blog/flexible-indexing' fontWeight='medium'>
2020
{' '}
2121
{/* Ensure it stands out a bit */}
22-
Xarray for Biology: Learn how Xarray can be used for Biological workflows.
22+
Xarray indexes: Unleash the power of coordinates!
2323
</Link>
2424
)
2525
// The second link will be passed as children, styled to be smaller
26-
const bannerChildren = (
27-
<Link
28-
href='https://docs.google.com/forms/d/e/1FAIpQLSeGvTLONF-24V7z2HoACm4MhEr82c2V-VIzA9eqM9-jt-Xh8g/viewform?usp=sharing&ouid=111570313164368772519'
29-
fontSize='sm'
30-
>
31-
{' '}
32-
{/* Add your second link here, smaller font */}
33-
<b>SciPy 2025</b> Click here for info about an Xarray for Bio Sprint!
34-
</Link>
35-
)
26+
// const bannerChildren = (
27+
// <Link
28+
// href='https://docs.google.com/forms/d/e/1FAIpQLSeGvTLONF-24V7z2HoACm4MhEr82c2V-VIzA9eqM9-jt-Xh8g/viewform?usp=sharing&ouid=111570313164368772519'
29+
// fontSize='sm'
30+
// >
31+
// {' '}
32+
// {/* Add your second link here, smaller font */}
33+
// <b>SciPy 2025</b> Click here for info about an Xarray for Bio Sprint!
34+
// </Link>
35+
//)
3636

3737
// Determine the base URL based on the environment
3838
const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL
@@ -77,7 +77,7 @@ export const Layout = ({
7777
<Header />
7878
{enableBanner && (
7979
<Banner title={bannerTitle} description={bannerDescription}>
80-
{bannerChildren}
80+
{/* {bannerChildren} */}
8181
</Banner>
8282
)}
8383
{children}

0 commit comments

Comments
 (0)