From 939fceba8b88a1c5a7e5a7b80eb56b8537ae6a95 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:39:22 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++++--------------------------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 96a474e..15619a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Poppins } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Rami Haddad Photographe | Portrait • Événement • Nature au Québec", - description: "Photographe professionnel au Québec spécialisé en portrait, événement et photographie de nature. Exploration créative et moments authentiques capturés avec passion.", - keywords: "photographe québec, portrait photography, event photography, nature photography, rami haddad", - metadataBase: new URL("https://ramihaddad.com"), + title: "Rami Haddad Photographe | Portrait • Événement • Nature au Québec", description: "Photographe professionnel au Québec spécialisé en portrait, événement et photographie de nature. Exploration créative et moments authentiques capturés avec passion.", keywords: "photographe québec, portrait photography, event photography, nature photography, rami haddad", metadataBase: new URL("https://ramihaddad.com"), alternates: { - canonical: "https://ramihaddad.com", - }, + canonical: "https://ramihaddad.com"}, openGraph: { - title: "Rami Haddad Photographe | Portrait • Événement • Nature", - description: "Découvrez le portfolio de Rami Haddad, photographe professionnel basé au Québec.", - url: "https://ramihaddad.com", - siteName: "Rami Haddad Photographe", - type: "website", - images: [ + title: "Rami Haddad Photographe | Portrait • Événement • Nature", description: "Découvrez le portfolio de Rami Haddad, photographe professionnel basé au Québec.", url: "https://ramihaddad.com", siteName: "Rami Haddad Photographe", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/woman-taking-photo_53876-32442.jpg", - alt: "Rami Haddad Photography Portfolio", - }, + url: "http://img.b2bpic.net/free-photo/woman-taking-photo_53876-32442.jpg", alt: "Rami Haddad Photography Portfolio"}, ], }, twitter: { - card: "summary_large_image", - title: "Rami Haddad Photographe", - description: "Portrait • Événement • Nature", - images: ["http://img.b2bpic.net/free-photo/woman-taking-photo_53876-32442.jpg"], + card: "summary_large_image", title: "Rami Haddad Photographe", description: "Portrait • Événement • Nature", images: ["http://img.b2bpic.net/free-photo/woman-taking-photo_53876-32442.jpg"], }, robots: { index: true, @@ -65,7 +42,7 @@ export default function RootLayout({ {children} @@ -1440,4 +1417,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}