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() {