Update src/app/page.tsx

This commit is contained in:
2025-12-24 13:45:00 +00:00
parent 4fddb4010b
commit cd9e3a4c1e

View File

@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import MediaSplitTabsAbout from "@/components/sections/about/MediaSplitTabsAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import TestimonialCardNine from "@/components/sections/testimonial/TestimonialCardNine";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial";
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
import { Youtube, Twitter, Linkedin, Instagram } from "lucide-react";
export default function LandingPage() {
@@ -254,7 +254,6 @@ export default function LandingPage() {
<ProductCardTwo
title="A10 Featured Selection"
description="Explore our most popular A10 variants with customer reviews and ratings."
starColor="#ff0000"
products={[
{
id: "1",
@@ -335,4 +334,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}