11import type { ReactNode } from 'react' ;
2- import clsx from 'clsx' ;
32import Link from '@docusaurus/Link' ;
43import useDocusaurusContext from '@docusaurus/useDocusaurusContext' ;
54import Layout from '@theme/Layout' ;
@@ -10,27 +9,28 @@ import styles from './index.module.css';
109function HomepageHeader ( ) {
1110 const { siteConfig} = useDocusaurusContext ( ) ;
1211 return (
13- < header className = { clsx ( 'hero hero--primary' , styles . heroBanner ) } >
14- < div className = "container" >
15- < Heading as = "h1" className = { clsx ( 'hero__title' , styles . heroBannerTitle ) } >
16- < svg width = { 50 } height = { 50 } viewBox = '0 0 50 50' >
12+ < header className = { styles . hero } >
13+ < Heading as = "h1" className = { styles . heroTitle } >
14+ < span className = { styles . heroTitleBrand } >
15+ < svg className = { styles . heroTitleLogo } width = { 50 } height = { 50 } viewBox = '0 0 50 50' >
1716 < image href = 'img/logo.svg' width = { 50 } height = { 50 } />
1817 </ svg >
19- { siteConfig . title }
20- </ Heading >
21- < p className = "hero__subtitle" > { siteConfig . tagline } </ p >
22- < div className = { styles . buttons } >
23- < Link
24- className = "button button--secondary button--lg"
25- to = "/docs/sirosid" >
26- SIROS ID
27- </ Link >
28- < Link
29- className = "button button--secondary button--lg"
30- to = "/docs/wwwallet" >
31- wwWallet
32- </ Link >
33- </ div >
18+ SIROS Foundation
19+ </ span >
20+ < span > Developer Docs</ span >
21+ </ Heading >
22+ { siteConfig . tagline && < p className = { styles . heroSubtitle } > { siteConfig . tagline } </ p > }
23+ < div className = { styles . heroButtons } >
24+ < Link
25+ className = "button button--secondary button--lg"
26+ to = "/docs/sirosid" >
27+ SIROS ID
28+ </ Link >
29+ < Link
30+ className = "button button--secondary button--lg"
31+ to = "/docs/wwwallet" >
32+ wwWallet
33+ </ Link >
3434 </ div >
3535 </ header >
3636 ) ;
0 commit comments