diff --git a/src/app/page.tsx b/src/app/page.tsx index c410ea7..b5327fc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -48,7 +48,7 @@ export default function HomePage() { title="North Dakota Roofing Built for Real Weather" description="Residential and commercial roofing, repairs, and storm restoration. Fast estimates. Clean installs. Strong warranties. Licensed, insured, and storm damage specialists serving North Dakota." tag="Licensed & Insured • Warranty-Backed • Storm Specialists" - tagAnimation="entrance-slide" + tagAnimation="slide-up" background={{ variant: 'glowing-orb' }} buttons={[ { text: 'Get Free Estimate', href: '/contact' }, diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 7fcfc07..cbe9f46 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,122 +1,94 @@ "use client"; -import ReactLenis from "lenis/react"; -import ProductCatalogOne from "@/components/sections/productCatalog/ProductCatalogOne"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import { useProductCatalog } from "@/hooks/useProductCatalog"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function ShopPage() { - const { - products, - isLoading, - search, - setSearch, - category, - setCategory, - sort, - setSort, - filters, - categories - } = useProductCatalog(); + return ( + + - return ( - - - +
+ +
- {isLoading ? ( -
-

Loading products...

-
- ) : ( -
- -
- )} - - -
-
- ); + +
+ ); } \ No newline at end of file