@@ -7,7 +7,7 @@ import Markdown from 'react-markdown';
77import rehypeHighlight from 'rehype-highlight' ;
88import { CODE_SNIPPETS } from '../const' ;
99import { BBCONF_SNIPPETS } from '../const' ;
10- import { useExampleBed } from '../queries/useExampleBed' ;
10+ // import { useExampleBed } from '../queries/useExampleBed';
1111import { useExampleBedSet } from '../queries/useExampleBedSet' ;
1212import { useStats } from '../queries/useStats.ts' ;
1313
@@ -27,7 +27,7 @@ export const Home = () => {
2727
2828 const navigate = useNavigate ( ) ;
2929
30- const { data : exampleBedMetadata } = useExampleBed ( ) ;
30+ // const { data: exampleBedMetadata } = useExampleBed(); # if example will be dynamic again
3131 const { data : exampleBedSetMetadata } = useExampleBedSet ( ) ;
3232 const { data : bedbaseStats } = useStats ( ) ;
3333
@@ -92,7 +92,8 @@ export const Home = () => {
9292 </ button >
9393 </ div >
9494 < div className = "d-flex flex-column flex-md-row align-items-center justify-content-center gap-1 my-3" >
95- < span > Or, explore an < a href = { `/bed/${ exampleBedMetadata ?. id || 'not-found' } ` } > example BED file</ a > </ span >
95+ { /*<span>Or, explore an <a href={`/bed/${exampleBedMetadata?.id || 'not-found'}`}>example BED file</a></span>*/ }
96+ < span > Or, explore an < a href = { `/bed/bd2578e70c0efe3674d0d39c782fe9e1` } > example BED file</ a > </ span >
9697 < span > or an{ ' ' } < a href = { `/bedset/${ exampleBedSetMetadata ?. id || 'not-found' } ` } > example BEDset</ a > </ span >
9798 </ div >
9899
0 commit comments