diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index aa4ee8b..f0acf12 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,7 +6,7 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; export default function AboutPage() { return ( - + diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index a781809..12eba91 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -6,10 +6,10 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import ReactLenis from "lenis/react"; export default function CartPage() { - const [cart, setCart] = useState([{ id: "p1", name: "Cedar Planks", price: "$45", quantity: 1, imageSrc: "" }]); + const [cart] = useState([{ id: "p1", name: "Cedar Planks", price: "$45", quantity: 1, imageSrc: "" }]); return ( - + + diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index d69cf71..1150142 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -5,7 +5,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS export default function LoginPage() { return ( - + +