diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 02003b8..7d9dac2 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -3,11 +3,12 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import SplitAbout from "@/components/sections/about/SplitAbout";
-import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
-import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
+import FaqDouble from "@/components/sections/faq/FaqDouble";
+import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
-import { Sparkles, Star, Shield } from "lucide-react";
+import { Zap, Sparkles, Award, Users, Headphones, HelpCircle, Mail } from "lucide-react";
const navItems = [
{ name: "Home", id: "home" },
@@ -71,40 +72,62 @@ export default function AboutPage() {
- {/* About Section - Extended */}
-
-
+
+
+
+ {/* About Section */}
+
+
- {/* Values Section */}
-
-
+
- {/* Testimonials Section */}
-
-
+
-
-
- {/* Social Proof Section - Partners */}
-
-
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index fa0bfa0..905daaa 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,58 +1,58 @@
"use client";
-import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import ContactSplit from '@/components/sections/contact/ContactSplit';
-import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
-import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
-import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import { Mail, Award, Star } from 'lucide-react';
-import Link from 'next/link';
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
+import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
+import ContactSplit from "@/components/sections/contact/ContactSplit";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import { Zap, Sparkles, Award, Mail } from "lucide-react";
+
+const navItems = [
+ { name: "Home", id: "home" },
+ { name: "Products", id: "products" },
+ { name: "About", id: "about" },
+ { name: "Pricing", id: "pricing" },
+ { name: "Contact", id: "contact" },
+];
+
+const footerColumns = [
+ {
+ items: [
+ { label: "Home", href: "/" },
+ { label: "Products", href: "/products" },
+ { label: "About", href: "/about" },
+ { label: "Pricing", href: "/pricing" },
+ ],
+ },
+ {
+ items: [
+ { label: "Build Guides", href: "#" },
+ { label: "PC Reviews", href: "#" },
+ { label: "Gaming News", href: "#" },
+ { label: "Comparisons", href: "#" },
+ ],
+ },
+ {
+ items: [
+ { label: "Support", href: "/contact" },
+ { label: "FAQ", href: "#faq" },
+ { label: "Contact", href: "/contact" },
+ { label: "Careers", href: "#" },
+ ],
+ },
+ {
+ items: [
+ { label: "Privacy Policy", href: "#" },
+ { label: "Terms of Service", href: "#" },
+ { label: "Cookie Policy", href: "#" },
+ { label: "Legal", href: "#" },
+ ],
+ },
+];
export default function ContactPage() {
- const navItems = [
- { name: "Home", id: "home" },
- { name: "Products", id: "products" },
- { name: "About", id: "about" },
- { name: "Pricing", id: "pricing" },
- { name: "Contact", id: "contact" },
- ];
-
- const footerColumns = [
- {
- items: [
- { label: "Home", href: "/" },
- { label: "Products", href: "/products" },
- { label: "About", href: "/about" },
- { label: "Pricing", href: "#pricing" },
- ],
- },
- {
- items: [
- { label: "Build Guides", href: "#" },
- { label: "PC Reviews", href: "#" },
- { label: "Gaming News", href: "#" },
- { label: "Comparisons", href: "#" },
- ],
- },
- {
- items: [
- { label: "Support", href: "/contact" },
- { label: "FAQ", href: "#faq" },
- { label: "Contact", href: "/contact" },
- { label: "Careers", href: "#" },
- ],
- },
- {
- items: [
- { label: "Privacy Policy", href: "#" },
- { label: "Terms of Service", href: "#" },
- { label: "Cookie Policy", href: "#" },
- { label: "Legal", href: "#" },
- ],
- },
- ];
-
return (
+ {/* Navbar */}
-
+
+
+ {/* Hero Section */}
+
+
-
@@ -333,8 +333,8 @@ export default function HomePage() {
useInvertedBackground={true}
className="w-full"
containerClassName="px-4 md:px-8"
- titleClassName="text-4xl md:text-5xl font-bold"
- descriptionClassName="text-lg text-gray-300 mt-4"
+ textBoxTitleClassName="text-4xl md:text-5xl font-bold"
+ textBoxDescriptionClassName="text-lg text-gray-300 mt-4"
/>
@@ -421,6 +421,7 @@ export default function HomePage() {
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
mediaPosition="right"
+ mediaAnimation="blur-reveal"
inputPlaceholder="Enter your email address"
buttonText="Send Message"
termsText="By contacting us, you agree to our Terms of Service and Privacy Policy."