diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d7b8492..c751357 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,26 +1,35 @@ +"use client"; import "@fortawesome/fontawesome-free/css/all.min.css"; import "@/styles/style.css"; import Header from "@/components/Header"; import Footer from "@/components/Footer"; +import Head from "next/head"; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { + const handleBodyClick = () => { + const menu = document.getElementById("menu_product"); + menu?.classList.remove("active"); + }; + return ( - - - - Hurasoft - + + + + + Hurasoft + +
-
{children}
+
{children}