From f4eb6da95c07bed2d034f9c7b5698122c6d1acd8 Mon Sep 17 00:00:00 2001 From: John Doe Date: Mon, 11 Sep 2023 17:42:25 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=9F=20Added=20Poppins=20font=20import?= =?UTF-8?q?=20=F0=9F=8E=A8=20Updated=20SiteHeader=20component=20?= =?UTF-8?q?=F0=9F=93=A6=20Imported=20ClientCommons=20module=20=F0=9F=8E=89?= =?UTF-8?q?=20Applied=20global=20styles=20from=20globals.css=20?= =?UTF-8?q?=F0=9F=94=A7=20Updated=20line-awesome=20font=20import=20?= =?UTF-8?q?=F0=9F=8C=88=20Styled=20index.scss=20=F0=9F=92=84=20Updated=20r?= =?UTF-8?q?c-slider=20styles=20=F0=9F=91=A3=20Implemented=20Footer=20compo?= =?UTF-8?q?nent=20=F0=9F=94=97=20Added=20FooterNav=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/layout.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/app/layout.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..7ee4528 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,35 @@ +import { Poppins } from "next/font/google"; +import SiteHeader from "./(client-components)/(Header)/SiteHeader"; +import ClientCommons from "./ClientCommons"; +import "./globals.css"; +import "@/fonts/line-awesome-1.3.0/css/line-awesome.css"; +import "@/styles/index.scss"; +import "rc-slider/assets/index.css"; +import Footer from "@/components/Footer"; +import FooterNav from "@/components/FooterNav"; + +const poppins = Poppins({ + subsets: ["latin"], + display: "swap", + weight: ["300", "400", "500", "600", "700"], +}); + +export default function RootLayout({ + children, + params, +}: { + children: React.ReactNode; + params: any; +}) { + return ( + + + + + {children} + +