5 Commits

Author SHA1 Message Date
5414163e8f Update src/app/page.tsx 2026-03-02 03:16:19 +00:00
8c76b263fa Update src/app/layout.tsx 2026-03-02 03:16:18 +00:00
dc70a17cda Merge version_3 into main
Merge version_3 into main
2026-03-02 03:11:52 +00:00
d23d68d7f5 Update src/app/page.tsx 2026-03-02 03:11:48 +00:00
9448cceb8f Merge version_2 into main
Merge version_2 into main
2026-03-02 03:09:47 +00:00
2 changed files with 5 additions and 10 deletions

View File

@@ -1411,4 +1411,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -8,7 +8,7 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Coffee, Mail, Lightbulb, Heart, Sparkles } from "lucide-react"; import { Coffee, Mail } from "lucide-react";
export default function CaffePage() { export default function CaffePage() {
return ( return (
@@ -41,7 +41,7 @@ export default function CaffePage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplit <HeroSplit
title="Craft Your Perfect Cup" title="Artisan Coffee Crafted Daily in Downtown SF"
description="Welcome to Sana's Caffe, where artisan coffee meets downtown elegance. Experience carefully sourced beans, expertly prepared by our passionate baristas in the heart of San Francisco." description="Welcome to Sana's Caffe, where artisan coffee meets downtown elegance. Experience carefully sourced beans, expertly prepared by our passionate baristas in the heart of San Francisco."
background={{ variant: "glowing-orb" }} background={{ variant: "glowing-orb" }}
tag="Premium Coffee" tag="Premium Coffee"
@@ -75,7 +75,7 @@ export default function CaffePage() {
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardTwelve <FeatureCardTwelve
title="Why Coffee Lovers Choose Sana's" title="Why Coffee Lovers Choose Sana's"
description="Discover what sets our craft coffee experience apart—inspired by our vision to elevate everyday moments through exceptional coffee and connection" description="Discover what sets our craft coffee experience apart from the rest"
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
@@ -94,11 +94,6 @@ export default function CaffePage() {
id: "expertise", label: "Expertise", title: "Master Baristas & Expert Service", items: [ id: "expertise", label: "Expertise", title: "Master Baristas & Expert Service", items: [
"Certified specialty coffee professionals", "Custom brewing methods for each bean", "Personalized recommendations", "Coffee education and tasting events" "Certified specialty coffee professionals", "Custom brewing methods for each bean", "Personalized recommendations", "Coffee education and tasting events"
] ]
},
{
id: "vision", label: "Vision", title: "Inspiring Customers Through Coffee", items: [
"Creating moments of joy and inspiration", "Building community connections", "Celebrating the art of coffee culture", "Empowering customers to explore their passion"
]
} }
]} ]}
/> />
@@ -178,4 +173,4 @@ export default function CaffePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }