You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
website/app/page.tsx

19 lines
515 B
TypeScript

import { Header } from "./components/Header";
import { About } from "./components/About";
import { Projects } from "./components/Projects";
import { Navbar } from "./components/nav/Navbar";
export default function Home() {
return (
/* Inherits from the RootLayout */
<div className="flex flex-col">
<Navbar />
<div className="self-center max-w-md lg:max-w-lg xl:max-w-xl flex flex-col space-y-10 grow">
<Header />
<About />
<Projects />
</div>
</div>
);
}