From e3be90ccab3c69428ba280b68325c4e2a7ec79b0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:46:51 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 87af95a..3644631 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,18 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Orsay AI – Prospection Automatisée Instagram & WhatsApp | SaaS Lead Generation", description: "Générez 400+ leads qualifiés par mois sur Instagram et WhatsApp avec IA. Safe-by-design, sans risque de ban. Essai gratuit 7 jours, sans CB.", keywords: "prospection Instagram, lead generation, WhatsApp automation, IA SaaS, automation outbound, safe Instagram", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Orsay AI – Leads Qualifiés en 5 Minutes", description: "Automatisez votre prospection sur Instagram et WhatsApp avec IA. Safe-by-design. Essai gratuit 7 jours.", url: "https://orsay.ai", siteName: "Orsay AI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-saas-dashboard-for-ai-prospection-1772552288444-b5f3f9bd.png", width: 1200, - height: 630, - alt: "Orsay AI Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Orsay AI – Leads Qualifiés en 5 Minutes", description: "Automatisez votre prospection sur Instagram et WhatsApp avec IA.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-saas-dashboard-for-ai-prospection-1772552288444-b5f3f9bd.png"], - }, + title: "Orsay AI - Instagram & WhatsApp Lead Generation", description: "Generate qualified leads on Instagram and WhatsApp in 5 minutes. AI-powered, Instagram-safe automation." }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}