From fb0693eb6a6ca0c05503e74b7e2a9aac4f242c52 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:15:03 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65a9130..6972312 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import "./styles/variables.css"; 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 inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Yanis | Création de sites web modernes", description: "Création de sites web professionnels pour petits business et entrepreneurs. Design moderne, responsive et livraison rapide.", keywords: "web design, création site web, freelance, développeur web, petit business, startup, design responsive", openGraph: { - title: "Yanis | Création de sites web modernes", description: "Je crée des sites web modernes et efficaces pour les petits business", siteName: "Yanis", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/minimalist-workspace-with-laptop-coffee-plants_9975-24294.jpg", alt: "Yanis portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Yanis | Création de sites web modernes", description: "Sites web professionnels pour votre business", images: ["http://img.b2bpic.net/free-photo/minimalist-workspace-with-laptop-coffee-plants_9975-24294.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Yanis Dev - Création de sites web modernes", description: "Je crée des sites web modernes et efficaces pour les petits business"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + + + + {children}