Update src/app/product-detail/page.tsx

This commit is contained in:
2026-04-17 05:02:07 +00:00
parent 5ab0710d7e
commit 5d3a5efb30

View File

@@ -6,14 +6,20 @@ import ButtonTextStagger from "@/components/button/ButtonTextStagger/ButtonTextS
export default function ProductDetailPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
]}
/>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Mobile Phones", id: "/mobile-phones" },
{ name: "Laptops", id: "/laptops" },
{ name: "Computer Parts", id: "/computer-parts" },
{ name: "Accessories", id: "/accessories" },
{ name: "Checkout", id: "/checkout" },
{ name: "Shop", id: "/shop" },
]}
/>
</div>
<div className="pt-32 pb-20 container mx-auto px-6">
<div className="grid md:grid-cols-2 gap-12 items-center">
<img
@@ -34,4 +40,4 @@ export default function ProductDetailPage() {
</div>
</ThemeProvider>
);
}
}