diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 611a3b6..e76b1d7 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -17,7 +17,7 @@ export default function BlogPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -61,7 +61,7 @@ export default function BlogPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "#home" }, + { label: "Home", href: "/" }, { label: "Menu", href: "#product" }, { label: "About", href: "#about" }, { label: "Contact", href: "#contact" } @@ -91,4 +91,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 966aba0..b98c78f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1413,4 +1413,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index a524d64..d9cf852 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import { Coffee, Flame, Heart, Star, Users, ThumbsUp, TrendingUp, Mail, Award } from 'lucide-react'; export default function LandingPage() { @@ -21,7 +22,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -77,6 +78,21 @@ export default function LandingPage() { /> +
+ +
+
); -} \ No newline at end of file +} diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a4a8484..a7ad368 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -82,7 +82,7 @@ function ProductPageContent({ params }: ProductPageProps) { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -97,8 +97,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -151,7 +150,7 @@ function ProductPageContent({ params }: ProductPageProps) { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -166,8 +165,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -227,7 +225,7 @@ function ProductPageContent({ params }: ProductPageProps) { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -242,8 +240,7 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -319,4 +316,4 @@ function ProductPageContent({ params }: ProductPageProps) { ); -} \ No newline at end of file +} diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 856bde0..c990679 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -25,7 +25,7 @@ function ShopPageContent() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -40,8 +40,7 @@ function ShopPageContent() { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -93,7 +92,7 @@ function ShopPageContent() { borderRadius="pill" contentWidth="mediumSmall" sizing="mediumLarge" - background="none" + background="floatingGradient" cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" @@ -108,8 +107,7 @@ function ShopPageContent() { { name: "Menu", id: "product" }, { name: "About", id: "about" }, { name: "Features", id: "feature" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -168,4 +166,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +}