20 Commits

Author SHA1 Message Date
9a27831288 Merge version_5 into main
Merge version_5 into main
2026-02-27 06:09:49 +00:00
d281280443 Update src/app/shop/page.tsx 2026-02-27 06:09:45 +00:00
0cb5361d55 Update src/app/shop/[id]/page.tsx 2026-02-27 06:09:44 +00:00
2a7d65f16c Update src/app/page.tsx 2026-02-27 06:09:43 +00:00
95cf0d3e7f Update src/app/blog/page.tsx 2026-02-27 06:09:42 +00:00
749f937dd1 Merge version_4 into main
Merge version_4 into main
2026-02-27 05:02:34 +00:00
b6cd5d1b75 Update src/app/shop/page.tsx 2026-02-27 05:02:30 +00:00
6543c5ee5b Update src/app/shop/[id]/page.tsx 2026-02-27 05:02:29 +00:00
fe585eefc4 Update src/app/page.tsx 2026-02-27 05:02:29 +00:00
bb1fa6f1a7 Update src/app/layout.tsx 2026-02-27 05:02:28 +00:00
74b33f7ca5 Update src/app/blog/page.tsx 2026-02-27 05:02:26 +00:00
f886306bab Update src/app/styles/variables.css 2026-02-27 04:59:57 +00:00
d80665986a Update src/app/shop/page.tsx 2026-02-27 04:59:57 +00:00
dceccd4258 Update src/app/shop/[id]/page.tsx 2026-02-27 04:59:56 +00:00
0b5122c654 Update src/app/page.tsx 2026-02-27 04:59:55 +00:00
a5c380b741 Update src/app/layout.tsx 2026-02-27 04:59:54 +00:00
a6f663c14f Update src/app/blog/page.tsx 2026-02-27 04:59:53 +00:00
f5e3bd8317 Merge version_3 into main
Merge version_3 into main
2026-02-27 04:57:59 +00:00
3afcaa67b4 Update src/app/styles/variables.css 2026-02-27 04:57:55 +00:00
097e87b170 Merge version_2 into main
Merge version_2 into main
2026-02-27 04:54:05 +00:00
4 changed files with 20 additions and 5 deletions

View File

@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -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() {
@@ -75,6 +76,20 @@ export default function LandingPage() {
]}
buttonAnimation="slide-up"
/>
<div className="mt-12">
<SocialProofOne
title="Trusted by Premium Brands"
description="We partner with the finest coffee suppliers and artisan producers from around the world"
tag="Our Partners"
names={[
"Ethiopian Highlands Coffee", "Colombian Fair Trade Co.", "Indonesian Sumatra Estates", "Kenyan AA Beans", "Brazilian Santos Roasters", "Peruvian Organic Farms"
]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
showCard={true}
/>
</div>
</div>
<div id="product" data-section="product">
@@ -309,4 +324,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -316,4 +316,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -166,4 +166,4 @@ export default function ShopPage() {
<ShopPageContent />
</Suspense>
);
}
}