diff --git a/Benjamin/app/About/page.tsx b/Benjamin/app/About/page.tsx index 39cd519..820f5e8 100644 --- a/Benjamin/app/About/page.tsx +++ b/Benjamin/app/About/page.tsx @@ -1,12 +1,13 @@ + import LearnAboutUs from "@/components/about us/learnAboutUs"; import Features from "@/components/features"; import SeperatorHeading from "@/components/ui/seperatorHeading"; const About = () => { return ( - <> -
-
+
+
+
About us
@@ -16,7 +17,7 @@ const About = () => {
- +
); }; diff --git a/Benjamin/app/Categories/page.tsx b/Benjamin/app/Categories/page.tsx index f6aa095..bfe9942 100644 --- a/Benjamin/app/Categories/page.tsx +++ b/Benjamin/app/Categories/page.tsx @@ -3,20 +3,20 @@ import { Button } from "@/components/ui/button"; const Category = () => { return ( - <> +
-
+
Our Categories
{/* */}
-
- +
); }; diff --git a/Benjamin/app/Teams/page.tsx b/Benjamin/app/Teams/page.tsx index 368c531..4951df6 100644 --- a/Benjamin/app/Teams/page.tsx +++ b/Benjamin/app/Teams/page.tsx @@ -1,24 +1,29 @@ -import ReviewsCarousel from "@/components/Testimonials"; -import SeperatorHeading from "@/components/ui/seperatorHeading"; -import TeamMember from "@/components/ui/teamMember"; + +import UnderConstruction from "@/components/ui/underConstruction"; const Teams = () => { return ( - <> -
-
-
Our Teams
-
-
- -
Meet Our Founder
- + + + //
+ //
+ //
+ //
+ // Our Teams + //
+ //
+ //
+ + + // + //
Meet Our Founder
+ // - -
Customer Reviews!
+ // + //
Customer Reviews!
- - + // + //
); }; diff --git a/Benjamin/app/layout.tsx b/Benjamin/app/layout.tsx index b8d83b0..7135583 100644 --- a/Benjamin/app/layout.tsx +++ b/Benjamin/app/layout.tsx @@ -29,7 +29,7 @@ export default function RootLayout({ referrerPolicy="no-referrer" /> - + {/* */} {/* */} diff --git a/Benjamin/app/page.tsx b/Benjamin/app/page.tsx index 9156a1a..5b84ecc 100644 --- a/Benjamin/app/page.tsx +++ b/Benjamin/app/page.tsx @@ -1,16 +1,16 @@ -"use client" + import Features from "@/components/features"; import Stores from "@/components/stores"; import Hero from "@/components/ui/Hero"; import SeperatorHeading from "@/components/ui/seperatorHeading"; import LearnAboutUs from "@/components/about us/learnAboutUs"; -import { useTheme } from "@/context/themeProvider"; +// import { useTheme } from "@/context/themeProvider"; export default function Home() { - const { theme} = useTheme() || {theme:"light"} // Get the current theme and toggle function + // const { theme} = useTheme() || {theme:"light"} // Get the current theme and toggle function return ( -
+
diff --git a/Benjamin/components/main-nav.tsx b/Benjamin/components/main-nav.tsx index 3f47d3d..dac73d1 100644 --- a/Benjamin/components/main-nav.tsx +++ b/Benjamin/components/main-nav.tsx @@ -76,7 +76,7 @@ export function MainNav({ className,theme }:MainNavProps) { href={route.href} className={cn( "font-nunito flex items-center gap-2 justify-center font-extrabold text-lg", - route.active ?`${theme==='dark'?'text-gray-200':'text-customTeal'}`:`${theme==='dark'?'text-gray-200':'text-customBlue'}`, + route.active ?`${theme==='dark'?'text-gray-500':'text-customTeal'}`:`${theme==='dark'?'text-gray-200':'text-customBlue'}`, theme=='dark'? `${'hover:text-gray-500'}`:`${'hover:text-customTeal'}` )} > diff --git a/Benjamin/components/navbar.tsx b/Benjamin/components/navbar.tsx index 020597c..ec6a477 100644 --- a/Benjamin/components/navbar.tsx +++ b/Benjamin/components/navbar.tsx @@ -11,7 +11,7 @@ const Navbar = () => { const { theme} = useTheme() || {theme:"light"} // Get the current theme and toggle function return ( -
+
{ + return ( +
+
+ +
+
+ This page is under development. We apologise for the inconvinience{" "} +
+
Please check back soon.
+
+
+
+ ); +}; + +export default UnderConstruction;