@@ -16,23 +16,23 @@ export const Layout = ({
16
16
const bannerTitle = 'Check out the new blog post!:'
17
17
// The first link will be the main description for the banner
18
18
const bannerDescription = (
19
- < Link href = '/blog/xarray-biology ' fontWeight = 'medium' >
19
+ < Link href = '/blog/flexible-indexing ' fontWeight = 'medium' >
20
20
{ ' ' }
21
21
{ /* 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!
23
23
</ Link >
24
24
)
25
25
// 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
+ // )
36
36
37
37
// Determine the base URL based on the environment
38
38
const baseUrl = process . env . NEXT_PUBLIC_VERCEL_URL
@@ -77,7 +77,7 @@ export const Layout = ({
77
77
< Header />
78
78
{ enableBanner && (
79
79
< Banner title = { bannerTitle } description = { bannerDescription } >
80
- { bannerChildren }
80
+ { /* { bannerChildren} */ }
81
81
</ Banner >
82
82
) }
83
83
{ children }
0 commit comments