From 98ad6bbd90f6979755b1593ee15fff32bdb5f1f2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 147 +++++++++++++++++++++-------------------------- 1 file changed, 67 insertions(+), 80 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f1294e9..d0cca7f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,38 +3,37 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; -import AboutMetric from "@/components/sections/about/AboutMetric"; -import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; -import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import HeroLogoCenter from "@/components/sections/hero/HeroLogoCenter"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; import ContactText from "@/components/sections/contact/ContactText"; -import FooterBase from "@/components/sections/footer/FooterBase"; import { Sparkles, Zap, Rocket, Film, Target, TrendingUp, Users, Award, Globe, Quote } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Social Spot", id: "social-spot" }, - { name: "Cosmic Monkey", id: "cosmic-monkey" }, + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Services", id: "#services" }, + { name: "Social Spot", id: "/social-spot" }, + { name: "Cosmic Monkey", id: "/cosmic-monkey" }, ]; const footerColumns = [ { title: "Solutions", items: [ { label: "TG Entertainment", href: "/" }, - { label: "Social Spot", href: "/#social-spot" }, - { label: "Cosmic Monkey", href: "/#cosmic-monkey" }, + { label: "Social Spot", href: "/social-spot" }, + { label: "Cosmic Monkey", href: "/cosmic-monkey" }, { label: "Services", href: "/#services" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "/about" }, + { label: "About Us", href: "/#about" }, { label: "Our Process", href: "/#services" }, - { label: "Team", href: "/about" }, + { label: "Team", href: "/#about" }, { label: "Contact", href: "/#contact" }, ], }, @@ -65,64 +64,50 @@ export default function HomePage() {
-
-
-
-
-
-
-
); -} \ No newline at end of file +}