mirror of https://github.com/sgoudham/website.git
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.
19 lines
515 B
TypeScript
19 lines
515 B
TypeScript
1 year ago
|
import { Header } from "./components/Header";
|
||
|
import { About } from "./components/About";
|
||
|
import { Projects } from "./components/Projects";
|
||
|
import { NavBar } from "./components/Navigation";
|
||
|
|
||
|
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>
|
||
|
);
|
||
|
}
|