Files
discordeno/website/src/pages/index.tsx
Seren_Modz 21 8b9930ffe0 ci(release): publish with yarn instead of npm (#4646)
* chore: update yarn to 4.12.0

* ci(release): publish with yarn instead of npm

* chore: update browsers list db

Signed-off-by: Seren_Modz 21 <seren@kings-world.net>

* chore(deps): add a resolution for react types

docusaurus is using react types v18, while discordeno uses v19

Signed-off-by: Seren_Modz 21 <seren@kings-world.net>

* fix: prefix the jsx element type with the react namespace

Signed-off-by: Seren_Modz 21 <seren@kings-world.net>

* chore(deps): update @rspack/core to v1.6.8

Signed-off-by: Seren_Modz 21 <seren@kings-world.net>

---------

Signed-off-by: Seren_Modz 21 <seren@kings-world.net>
Co-authored-by: Fleny <Fleny113@outlook.com>
2025-12-19 18:12:37 +01:00

21 lines
728 B
TypeScript

import Layout from '@theme/Layout'
import Footer from '../components/footer'
import DiscordenoHeader from '../components/header'
import DiscordenoFAQ from '../components/home/faq'
import DiscordenoFeatures from '../components/home/features'
import DiscordenoReviews from '../components/home/reviews'
export default function Home(): React.JSX.Element {
return (
<Layout title={`Discordeno Documentation`} description="An in-depth guide to using the Discordeno library for Deno.">
<DiscordenoHeader />
<div style={{ backgroundColor: 'var(--ifm-navbar-background-color)' }}>
<DiscordenoFeatures />
<DiscordenoReviews />
<DiscordenoFAQ />
</div>
<Footer />
</Layout>
)
}