Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3bffe40bd0 | |||
| f2d38cd99a | |||
| 870bd48380 | |||
| 4001c53f28 | |||
| 1e084924cb | |||
| 5eec5258bf | |||
| 1237c19c29 | |||
| 923c4112fe | |||
| a419659a13 | |||
| 2be3be695c |
@@ -6,23 +6,27 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
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 = {
|
export const metadata: Metadata = {
|
||||||
title: 'L\'Agence Chrétienne | Conseil Stratégique & Pilotage de Croissance',
|
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.',
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -31,9 +35,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${interTight.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f9f4;
|
--background: #0a0a0a;
|
||||||
--card: #ffffff;
|
--card: #1a1a1a;
|
||||||
--foreground: #1a2e1a;
|
--foreground: #f5f5f5;
|
||||||
--primary-cta: #2d5a27;
|
--primary-cta: #ffdf7d;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #2d5a27;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #4a8c3f;
|
--accent: #b8860b;
|
||||||
--background-accent: #6fb85e;
|
--background-accent: #d7ae45;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user