From f6174a8d92e8e895ce422e84cd6e410fecc49bfd Mon Sep 17 00:00:00 2001 From: Kevin Yven Riexinger Date: Sun, 5 Nov 2023 18:50:10 +0100 Subject: [PATCH] fine tuneing --- src/app/layout.js | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/app/layout.js b/src/app/layout.js index c3587c4..38fe39a 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -1,3 +1,4 @@ +"use client"; import { Inter } from "next/font/google"; import "@fortawesome/fontawesome-svg-core/styles.css"; @@ -5,14 +6,14 @@ import "@fortawesome/fontawesome-svg-core/styles.css"; import { config } from "@fortawesome/fontawesome-svg-core"; config.autoAddCss = false; - import "@/styles/styles.scss"; - import Footer from "./(components)/Footer"; -import LoadingAnimation from "./(components)/LoadingAnimation" +import LoadingAnimation from "./(components)/LoadingAnimation"; +import { MotionConfig } from "framer-motion"; const inter = Inter({ subsets: ["latin"] }); +import { motion } from "framer-motion"; export const metadata = { title: "Stadt Ratingen", @@ -31,8 +32,16 @@ export default function RootLayout({ children }) { - - {children} + + + {children} +