diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1204882..7516de2 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,11 +11,10 @@ import { Handshake } from 'lucide-react'; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, { name: "About Us", id: "/about" }, { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" }, - { name: "Cart", id: "/cart" }, + { name: "Cart", id: "/cart" } ]; const footerColumns = [ @@ -54,8 +53,8 @@ export default function AboutPage() { defaultTextAnimation="reveal-blur" borderRadius="soft" contentWidth="mediumSmall" - sizing="mediumSizeLargeTitles" - background="circleGradient" + sizing="largeSizeMediumTitles" + background="aurora" cardStyle="glass-elevated" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="layered" @@ -130,4 +129,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx index d664715..e6a141a 100644 --- a/src/app/account/page.tsx +++ b/src/app/account/page.tsx @@ -14,7 +14,7 @@ export default function AccountPage() { ]; return ( - +
diff --git a/src/app/auth/page.tsx b/src/app/auth/page.tsx index 7cccd52..3fd7ca2 100644 --- a/src/app/auth/page.tsx +++ b/src/app/auth/page.tsx @@ -14,7 +14,7 @@ export default function AuthPage() { ]; return ( - +
diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 8a09b4f..57b0abf 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,8 +8,11 @@ import FooterMedia from "@/components/sections/footer/FooterMedia"; import Link from "next/link"; const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, { name: "Blog", id: "/blog" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Cart", id: "/cart" } ]; const footerNavColumns = [ @@ -40,8 +43,8 @@ export default function BlogPage() { defaultTextAnimation="reveal-blur" borderRadius="soft" contentWidth="mediumSmall" - sizing="mediumSizeLargeTitles" - background="circleGradient" + sizing="largeSizeMediumTitles" + background="aurora" cardStyle="glass-elevated" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="layered" diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 65a8082..d11f69f 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -10,7 +10,6 @@ import Link from "next/link"; export default function CartPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, { name: "About Us", id: "/about" }, { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" }, @@ -53,8 +52,8 @@ export default function CartPage() { defaultTextAnimation="reveal-blur" borderRadius="soft" contentWidth="mediumSmall" - sizing="mediumSizeLargeTitles" - background="circleGradient" + sizing="largeSizeMediumTitles" + background="aurora" cardStyle="glass-elevated" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="layered" @@ -128,4 +127,4 @@ export default function CartPage() { /> ); -} \ No newline at end of file +}