This commit is contained in:
2026-04-23 22:29:00 +02:00
parent fcd3554545
commit 3460b67777
37 changed files with 356 additions and 325 deletions
+22 -2
View File
@@ -1,8 +1,28 @@
import "./globals.css";
const siteUrl = "https://portfolio.valentin-massonniere.ch";
const title = "Valentin Massonniere — AI & Robotics Engineer";
const description =
"Portfolio of Valentin Massonniere, AI & Robotics Engineer and Data Scientist, working on real-time robotics platforms, ESP32 firmware, SLAM, and applied machine learning.";
export const metadata = {
title: "Valentin Massonniere",
description: "Valentin Massonniere Portfolio",
metadataBase: new URL(siteUrl),
title,
description,
alternates: { canonical: siteUrl },
openGraph: {
type: "website",
url: siteUrl,
title,
description,
siteName: "Valentin Massonniere",
locale: "en_US",
},
twitter: {
card: "summary_large_image",
title,
description,
},
};
export default function RootLayout({ children }) {
+2
View File
@@ -3,6 +3,7 @@ import Presentation from "../components/Presentation";
import About from "../components/About";
import Projects from "../components/Projects";
import Experiences from "@/components/Experiences";
import Certifications from "@/components/Certifications";
import Educations from "@/components/Educations";
import Contact from "@/components/Contact";
@@ -12,6 +13,7 @@ export default function Home() {
<Header></Header>
<Presentation></Presentation>
<About></About>
<Certifications></Certifications>
<Projects></Projects>
<Experiences></Experiences>
<Educations></Educations>