Skip to content

Commit

Permalink
TRY #1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 25, 2025
1 parent 58a4e0d commit d636623
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import type {Metadata} from "next";
import {IBM_Plex_Sans_Condensed, Montserrat} from "next/font/google";
import "/public/styles.css";
import Header from "@/layouts/Header/Header";
import Footer from "@/layouts/Footer/Footer";

const ibmPlexSansCondensed = IBM_Plex_Sans_Condensed({
variable: "--font-ibm-plex-sans-condensed",
Expand Down Expand Up @@ -34,9 +32,9 @@ export default function RootLayout({
return (
<html className="font-sans" lang="fr">
<body className={`${ibmPlexSansCondensed.variable} ${montserrat.variable} antialiased bg-camel`}>
<Header/>

<main className={'relative -top-[104px] left-0'}>{children}</main>
<Footer/>

</body>
</html>
);
Expand Down

0 comments on commit d636623

Please sign in to comment.