1*2167191dSAndroid Build Coastguard Worker/* 2*2167191dSAndroid Build Coastguard Worker * Copyright 2022 The JSpecify Authors. 3*2167191dSAndroid Build Coastguard Worker * 4*2167191dSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*2167191dSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*2167191dSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*2167191dSAndroid Build Coastguard Worker * 8*2167191dSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*2167191dSAndroid Build Coastguard Worker * 10*2167191dSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*2167191dSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*2167191dSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*2167191dSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*2167191dSAndroid Build Coastguard Worker * limitations under the License. 15*2167191dSAndroid Build Coastguard Worker */ 16*2167191dSAndroid Build Coastguard Worker 17*2167191dSAndroid Build Coastguard Workerimport React from 'react'; 18*2167191dSAndroid Build Coastguard Workerimport clsx from 'clsx'; 19*2167191dSAndroid Build Coastguard Workerimport Link from '@docusaurus/Link'; 20*2167191dSAndroid Build Coastguard Workerimport useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 21*2167191dSAndroid Build Coastguard Workerimport Layout from '@theme/Layout'; 22*2167191dSAndroid Build Coastguard Workerimport HomepageFeatures from '@site/src/components/HomepageFeatures'; 23*2167191dSAndroid Build Coastguard Worker 24*2167191dSAndroid Build Coastguard Workerimport styles from './index.module.css'; 25*2167191dSAndroid Build Coastguard Worker 26*2167191dSAndroid Build Coastguard Workerimport useBaseUrl from '@docusaurus/useBaseUrl'; 27*2167191dSAndroid Build Coastguard Worker 28*2167191dSAndroid Build Coastguard Workerfunction HomepageHeader() { 29*2167191dSAndroid Build Coastguard Worker const {siteConfig} = useDocusaurusContext(); 30*2167191dSAndroid Build Coastguard Worker return ( 31*2167191dSAndroid Build Coastguard Worker <header className={clsx('hero hero--primary', styles.heroBanner)}> 32*2167191dSAndroid Build Coastguard Worker <div className="container"> 33*2167191dSAndroid Build Coastguard Worker <h1> 34*2167191dSAndroid Build Coastguard Worker <img src={useBaseUrl('/img/jspecify-banner.svg')} className={styles.banner} alt='JSpecify Banner' /> 35*2167191dSAndroid Build Coastguard Worker </h1> 36*2167191dSAndroid Build Coastguard Worker <p className="hero__subtitle">{siteConfig.tagline}</p> 37*2167191dSAndroid Build Coastguard Worker <div className={styles.buttons}> 38*2167191dSAndroid Build Coastguard Worker <Link 39*2167191dSAndroid Build Coastguard Worker className="button button--secondary button--lg" 40*2167191dSAndroid Build Coastguard Worker to="/docs/start-here"> 41*2167191dSAndroid Build Coastguard Worker Learn More 42*2167191dSAndroid Build Coastguard Worker </Link> 43*2167191dSAndroid Build Coastguard Worker </div> 44*2167191dSAndroid Build Coastguard Worker </div> 45*2167191dSAndroid Build Coastguard Worker </header> 46*2167191dSAndroid Build Coastguard Worker ); 47*2167191dSAndroid Build Coastguard Worker} 48*2167191dSAndroid Build Coastguard Worker 49*2167191dSAndroid Build Coastguard Workerexport default function Home() { 50*2167191dSAndroid Build Coastguard Worker const {siteConfig} = useDocusaurusContext(); 51*2167191dSAndroid Build Coastguard Worker return ( 52*2167191dSAndroid Build Coastguard Worker <Layout 53*2167191dSAndroid Build Coastguard Worker title={`${siteConfig.title} Main`} 54*2167191dSAndroid Build Coastguard Worker description="Standard Annotations for Java Static Analysis"> 55*2167191dSAndroid Build Coastguard Worker <HomepageHeader /> 56*2167191dSAndroid Build Coastguard Worker <main> 57*2167191dSAndroid Build Coastguard Worker <HomepageFeatures /> 58*2167191dSAndroid Build Coastguard Worker </main> 59*2167191dSAndroid Build Coastguard Worker </Layout> 60*2167191dSAndroid Build Coastguard Worker ); 61*2167191dSAndroid Build Coastguard Worker} 62