Update src/app/private-label/page.tsx

This commit is contained in:
2026-05-06 08:50:39 +00:00
parent 59e0acf11d
commit 11433fe9d8

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBase from '@/components/sections/footer/FooterBase';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
@@ -23,30 +23,20 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About Brand",
id: "/about",
},
name: "About Brand", id: "/about"},
{
name: "Private Label",
id: "/private-label",
},
name: "Private Label", id: "/private-label"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="AsianBulls"
button={{
text: "Shop Now",
href: "#products",
}}
text: "Shop Now", href: "#products"}}
/>
</div>
@@ -59,22 +49,12 @@ export default function LandingPage() {
description="We deliver results."
metrics={[
{
id: "m1",
value: "12+",
title: "Factories",
items: [
"Global reach",
"High quality",
],
id: "m1", value: "12+", title: "Factories", items: [
"Global reach", "High quality"],
},
{
id: "m2",
value: "500k",
title: "Units/Mo",
items: [
"High capacity",
"Fast turnaround",
],
id: "m2", value: "500k", title: "Units/Mo", items: [
"High capacity", "Fast turnaround"],
},
]}
/>
@@ -85,9 +65,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Quality First"
description={[
"Precision is our language.",
"We source only premium materials.",
]}
"Precision is our language.", "We source only premium materials."]}
/>
</div>
@@ -95,41 +73,25 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Hoodies",
href: "#",
},
label: "Hoodies", href: "#"},
{
label: "T-Shirts",
href: "#",
},
label: "T-Shirts", href: "#"},
{
label: "Shirts",
href: "#",
},
label: "Shirts", href: "#"},
{
label: "Pants",
href: "#",
},
label: "Pants", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Brand",
href: "/about",
},
label: "About Brand", href: "/about"},
{
label: "Private Label",
href: "/private-label",
},
label: "Private Label", href: "/private-label"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}