Damn, I like this website!

This commit is contained in:
Mauro Balades
2024-07-03 17:03:11 +02:00
parent ef3e94cb8d
commit 2ab3801100
31 changed files with 8838 additions and 54 deletions

View File

@@ -16,7 +16,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning >
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>
<ThemeProvider
attribute="class"

View File

@@ -1,8 +1,15 @@
import Features from "@/components/features";
import Footer from "@/components/footer";
import Header from "@/components/header";
import { Navigation } from "@/components/navigation";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
</main>
<main className="flex min-h-screen flex-col items-center justify-start">
<Header />
<Features />
<Footer />
<Navigation /> {/* At the bottom of the page */}
</main>
);
}