4 Commits

Author SHA1 Message Date
61300158a4 Update src/app/page.tsx 2026-05-23 12:25:56 +00:00
f7a5f18a6e Merge version_1 into main
Merge version_1 into main
2026-05-22 12:40:52 +00:00
3cba7fd1c3 Merge version_1 into main
Merge version_1 into main
2026-05-22 12:40:29 +00:00
391e545b27 Merge version_1 into main
Merge version_1 into main
2026-05-22 12:39:59 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -232,23 +232,18 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactCenter
tag="Connect"
title="Elevate Your Workflow"
description="Partner with an AI Automation Engineer to streamline your operations and drive efficiency."
useInvertedBackground={true}
background={{
variant: "plain"}}
tag="Let's Talk"
title="Ready for your best cup?"
description="Join our newsletter or get in touch for corporate wholesale."
buttons={[
{
text: "Contact Us", href: "#"},
]}
background={{ variant: "sparkles-gradient" }}
buttonText="Submit Inquiry"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/close-up-roasted-brown-coffee-beans_23-2148254977.jpg"
<FooterBase
logoText="Kopi Aloo"
columns={[
{
@@ -260,17 +255,17 @@ export default function LandingPage() {
],
},
{
title: "Shop", items: [
title: "Services", items: [
{
label: "All Beans", href: "#products"},
label: "Automation Strategy", href: "#"},
{
label: "Subscribe", href: "#"},
label: "Implementation", href: "#"},
],
},
{
title: "Support", items: [
{
label: "Contact", href: "#"},
label: "Contact", href: "#contact"},
{
label: "FAQs", href: "#"},
],
@@ -281,4 +276,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}