Update src/app/shop/page.tsx
This commit is contained in:
@@ -6,7 +6,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
|
|||||||
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
|
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
|
||||||
import { useProductCatalog } from "@/hooks/useProductCatalog";
|
import { useProductCatalog } from "@/hooks/useProductCatalog";
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import { Instagram, Facebook, Pinterest } from 'lucide-react';
|
import { Instagram, Facebook, Pin } from 'lucide-react';
|
||||||
|
|
||||||
export default function ShopPage() {
|
export default function ShopPage() {
|
||||||
const {
|
const {
|
||||||
@@ -37,10 +37,16 @@ export default function ShopPage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Angelina"
|
brandName="Angelina"
|
||||||
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Services", id: "/#services" },
|
||||||
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
|
{ name: "FAQ", id: "/#faq" },
|
||||||
|
]}
|
||||||
button={{ text: "Cart", onClick: handleCartClick }}
|
button={{ text: "Cart", onClick: handleCartClick }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -66,10 +72,16 @@ export default function ShopPage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="navbar" data-section="navbar">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Angelina"
|
brandName="Angelina"
|
||||||
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Services", id: "/#services" },
|
||||||
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
|
{ name: "FAQ", id: "/#faq" },
|
||||||
|
]}
|
||||||
button={{ text: "Cart", onClick: handleCartClick }}
|
button={{ text: "Cart", onClick: handleCartClick }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -91,7 +103,7 @@ export default function ShopPage() {
|
|||||||
socialLinks={[
|
socialLinks={[
|
||||||
{ icon: Instagram, href: "https://instagram.com/angelinaflowers", ariaLabel: "Instagram" },
|
{ icon: Instagram, href: "https://instagram.com/angelinaflowers", ariaLabel: "Instagram" },
|
||||||
{ icon: Facebook, href: "https://facebook.com/angelinaflowers", ariaLabel: "Facebook" },
|
{ icon: Facebook, href: "https://facebook.com/angelinaflowers", ariaLabel: "Facebook" },
|
||||||
{ icon: Pinterest, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" },
|
{ icon: Pin, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user