diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1f08cf48..54d6fde1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -4,6 +4,8 @@ import React from "react"; import { Lato } from "@next/font/google"; import { Footer } from "./Footer"; import { Navbar } from "./Navbar"; +import { motion } from "framer-motion"; +import { ScrollToTop } from "./ScrollToTop"; const lato = Lato({ subsets: ["latin"], @@ -14,12 +16,21 @@ const lato = Lato({ export const Layout = ({ children }: { children: ReactNode }) => { return ( - -
- - {children} -
-