Update src/app/layout.tsx

This commit is contained in:
2026-03-06 13:39:22 +00:00
parent 90b5889066
commit 939fceba8b

View File

@@ -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({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
className={`${poppins.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
@@ -1440,4 +1417,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}