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
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
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"
>
-