From adc16e1a65655206f65d70cd62c14ed9a8f2fc35 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:22:09 +0000 Subject: [PATCH 1/5] Add src/app/about/page.tsx --- src/app/about/page.tsx | 187 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..7ec0500 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,187 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Sparkles, Zap, Award, Star, TrendingUp, Users, Globe, CheckCircle } from "lucide-react"; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "How It Works", id: "how-it-works" }, + { name: "Services", id: "services" }, + { name: "Contact", id: "/contact" }, + { name: "Login", id: "login" }, + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Request Product", href: "/request-product" }, + { label: "My Quotes", href: "/my-quotes" }, + { label: "Track Order", href: "/track-order" }, + { label: "Pricing", href: "#pricing" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Blog", href: "#blog" }, + { label: "Careers", href: "#careers" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Support", items: [ + { label: "Help Center", href: "#help" }, + { label: "Status", href: "#status" }, + { label: "FAQ", href: "#faq" }, + { label: "Email Us", href: "mailto:support@chestnut.com" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms of Service", href: "#terms" }, + { label: "Shipping Policy", href: "#shipping" }, + { label: "Refund Policy", href: "#refund" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From 7f212b1dc8984b9d59f36ef4a717acce54c2ea65 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:22:09 +0000 Subject: [PATCH 2/5] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 123 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..fcad97e --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,123 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Mail, Phone, MapPin, Zap } from "lucide-react"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "How It Works", id: "how-it-works" }, + { name: "Services", id: "services" }, + { name: "Contact", id: "/contact" }, + { name: "Login", id: "login" }, + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Request Product", href: "/request-product" }, + { label: "My Quotes", href: "/my-quotes" }, + { label: "Track Order", href: "/track-order" }, + { label: "Pricing", href: "#pricing" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Blog", href: "#blog" }, + { label: "Careers", href: "#careers" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Support", items: [ + { label: "Help Center", href: "#help" }, + { label: "Status", href: "#status" }, + { label: "FAQ", href: "#faq" }, + { label: "Email Us", href: "mailto:support@chestnut.com" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms of Service", href: "#terms" }, + { label: "Shipping Policy", href: "#shipping" }, + { label: "Refund Policy", href: "#refund" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From e59aa28bd5cf0ad4e514e49c18083854f1b410d1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:22:10 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 189 ++++++++++------------------------------------- 1 file changed, 37 insertions(+), 152 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e62d6a7..93b798a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,8 +23,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Request Product", href: "/request-product" }, { label: "My Quotes", href: "/my-quotes" }, { label: "Track Order", href: "/track-order" }, @@ -32,8 +31,7 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Blog", href: "#blog" }, { label: "Careers", href: "#careers" }, @@ -41,8 +39,7 @@ export default function HomePage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Help Center", href: "#help" }, { label: "Status", href: "#status" }, { label: "FAQ", href: "#faq" }, @@ -50,8 +47,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#privacy" }, { label: "Terms of Service", href: "#terms" }, { label: "Shipping Policy", href: "#shipping" }, @@ -73,11 +69,11 @@ export default function HomePage() { secondaryButtonStyle="solid" headingFontWeight="extrabold" > -