Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
@@ -0,0 +1 @@
|
||||
@import "tailwindcss";
|
||||
@@ -0,0 +1,14 @@
|
||||
import "./globals.css";
|
||||
|
||||
export const metadata = {
|
||||
title: "Valentin Massonniere",
|
||||
description: "Valentin Massonniere Portfolio",
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
import Header from "../components/Header";
|
||||
import Presentation from "../components/Presentation";
|
||||
import About from "../components/About";
|
||||
import Projects from "../components/Projects";
|
||||
import Experiences from "@/components/Experiences";
|
||||
import Educations from "@/components/Educations";
|
||||
import Contact from "@/components/Contact";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div>
|
||||
<Header></Header>
|
||||
<Presentation></Presentation>
|
||||
<About></About>
|
||||
<Projects></Projects>
|
||||
<Experiences></Experiences>
|
||||
<Educations></Educations>
|
||||
<Contact></Contact>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user