5 Commits

Author SHA1 Message Date
dcd301ff22 Merge version_2 into main
Merge version_2 into main
2026-03-18 17:46:25 +00:00
4f1ac74673 Update src/app/styles/base.css 2026-03-18 17:46:20 +00:00
6c2edb21ad Update src/app/page.tsx 2026-03-18 17:46:20 +00:00
7614df8a94 Update src/app/layout.tsx 2026-03-18 17:46:19 +00:00
095621dda9 Merge version_1 into main
Merge version_1 into main
2026-03-18 17:35:30 +00:00
3 changed files with 9 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -15,11 +16,10 @@ export const metadata: Metadata = {
description: 'GAFC propose des fluides automobiles haute performance pour le marché africain. Solutions fiables pour moteurs, transmissions, freins et plus.',
};
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -30,7 +30,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -304,4 +304,4 @@ export default function GAFCPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-roboto), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-roboto), sans-serif;
}