diff --git a/app/page.tsx b/app/page.tsx
index efa7a72..1747596 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,12 +1,16 @@
import Image from "next/image";
import Header from "../components/nav_foot/header";
import Navbar from "@/components/nav_foot/navbar";
+import Products from "@/components/pageParts/products";
export default function Home() {
return (
);
}
diff --git a/components/nav_foot/navbar.tsx b/components/nav_foot/navbar.tsx
index 1a0fec3..ba9974f 100644
--- a/components/nav_foot/navbar.tsx
+++ b/components/nav_foot/navbar.tsx
@@ -163,7 +163,7 @@ function LinkGroup({ togle_func }: { togle_func: () => void }) {
(null);
return (
-
+ {/* title part */}
+
+
+ {/* product filters */}
+
+ {productsTypes.map((item, index) => (
+
+ ))}
+
+
+ {/* products */}
+
- )
+ );
}
diff --git a/components/tools/title.tsx b/components/tools/title.tsx
index 933a202..bc07f18 100644
--- a/components/tools/title.tsx
+++ b/components/tools/title.tsx
@@ -1,8 +1,9 @@
import { TitleType } from '@/types'
import React from 'react'
+import Text from '../text'
export default function Title({text}:TitleType) {
return (
- {text}
+
)
}