From a4ad878e967456990b27163f3e77b9d19d7d74a8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 23:08:31 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 272 ++++++++++++++++++++++++++++++----------------- 1 file changed, 177 insertions(+), 95 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3dcf175..1cd5ddc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,103 +1,185 @@ -'use client'; +"use client"; -import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import { Feather, Palette, User } from "lucide-react"; -export default function Home() { - const navItems = [ - { name: 'Home', id: '/' }, - { name: 'About', id: '/about' }, - { name: 'Contact', id: '/contact' } - ]; - +export default function LandingPage() { return ( - - -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
); -} \ No newline at end of file +} From fa7dc38da79193be766a9832a12e1ce7fe3df9d9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 23:08:32 +0000 Subject: [PATCH 2/2] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 38357a7..dbda04c 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-halant), sans-serif; + font-family: var(--font-reem-kufi), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-halant), sans-serif; + font-family: var(--font-reem-kufi), sans-serif; }