diff --git a/app/[carType]/page.tsx b/app/[carType]/page.tsx index 0e741d3..7d0611f 100644 --- a/app/[carType]/page.tsx +++ b/app/[carType]/page.tsx @@ -1,6 +1,6 @@ "use client" -import CarType_Header from "@/components/carTypePageParts/carType_head"; +import CarType_Header from "@/components/carPageParts/carType_head"; import { useParams } from "next/navigation" export default function CartType() { diff --git a/app/layout.tsx b/app/layout.tsx index 13295e8..d10b476 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,10 @@ import { Geist, Geist_Mono } from "next/font/google"; import { dir } from "i18next"; import "./globals.css"; import UpScrollIcon from "@/components/upScroll"; +import Contact from "@/components/pageParts/contact"; +import Footer from "@/components/nav_foot/footer"; +import Navbar from "@/components/nav_foot/navbar"; +import Header from "@/components/nav_foot/header"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -26,14 +30,17 @@ export default function RootLayout({ children: React.ReactNode; params: { lang: string }; }>) { - - - return ( +
+ {children} - +
+ +
+