|
|
|
|
@@ -6,23 +6,27 @@ import "@/lib/gsap-setup";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
import { Raleway } from "next/font/google";
|
|
|
|
|
import { Open_Sans } from "next/font/google";
|
|
|
|
|
import { Inter_Tight } from "next/font/google";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'L\'Agence Chrétienne | Conseil Stratégique & Pilotage de Croissance',
|
|
|
|
|
description: 'Nous analysons, structurons et pilotons la croissance des marques. Partenaire stratégique pour entrepreneurs et entreprises.',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const interTight = Inter_Tight({
|
|
|
|
|
variable: "--font-inter-tight",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
@@ -31,9 +35,7 @@ export default function RootLayout({
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<body className={`${interTight.variable} antialiased`}>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
<script
|
|
|
|
|
|