d3ro-voice/site/src/App.tsx
Yun Chan 9dd52f0626
Some checks failed
Deploy Landing Page / build (push) Waiting to run
Deploy Landing Page / deploy (push) Blocked by required conditions
CI Pipeline / Code Quality & Typecheck (push) Successful in 3m3s
CI Pipeline / Test Suite (ubuntu-latest) (push) Successful in 1m5s
CI Pipeline / Build Validation (admin) (push) Successful in 1m22s
CI Pipeline / Test Suite (macos-latest) (push) Failing after 5s
CI Pipeline / Test Suite (windows-latest) (push) Failing after 2m6s
CI Pipeline / Build Validation (desktop) (push) Successful in 4m1s
feat: integrate official download and releases section directly into the main homepage
2026-08-20 17:11:52 +09:00

32 lines
857 B
TypeScript

import { I18nProvider } from './i18n'
import { Header } from './sections/Header'
import { Hero } from './sections/Hero'
import { Features } from './sections/Features'
import { HowItWorks } from './sections/HowItWorks'
import { Privacy } from './sections/Privacy'
import { Pricing } from './sections/Pricing'
import { Download } from './sections/Download'
import { FAQ } from './sections/FAQ'
import { CTA } from './sections/CTA'
import { Footer } from './sections/Footer'
export function App() {
return (
<I18nProvider>
<div className="min-h-screen bg-surface-950">
<Header />
<main>
<Hero />
<Features />
<HowItWorks />
<Privacy />
<Pricing />
<Download />
<FAQ />
<CTA />
</main>
<Footer />
</div>
</I18nProvider>
)
}