10 Commits

Author SHA1 Message Date
bbbed482af Merge version_4 into main
Merge version_4 into main
2026-05-19 16:37:07 +00:00
58d085b6de Update src/app/page.tsx 2026-05-19 16:37:04 +00:00
126981a6b6 Update src/app/contact/page.tsx 2026-05-19 16:37:04 +00:00
0fb38824b1 Merge version_3 into main
Merge version_3 into main
2026-05-19 16:27:59 +00:00
7e76ee52a4 Update src/app/contact/page.tsx 2026-05-19 16:27:53 +00:00
46a621e2d0 Merge version_3 into main
Merge version_3 into main
2026-05-19 16:27:32 +00:00
a96664dbdc Update src/app/products/page.tsx 2026-05-19 16:27:29 +00:00
9fa85f62aa Update src/app/page.tsx 2026-05-19 16:27:28 +00:00
0612a616da Add src/app/contact/page.tsx 2026-05-19 16:27:28 +00:00
58f4758005 Merge version_2 into main
Merge version_2 into main
2026-05-19 16:25:04 +00:00
3 changed files with 62 additions and 19 deletions

56
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,56 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="medium"
background="fluid"
cardStyle="outline"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="contact" data-section="contact" className="pt-32 pb-16">
<ContactCenter
tag="Get in Touch"
title="Contact Our Team"
description="Call us at 0793444411 or email us at info@eagleone.co.ke for all your infrastructure and city service needs. Reach out and let's get started."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Cabro City"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -2,14 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Building } from "lucide-react";
@@ -32,11 +30,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/#hero" },
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName="Cabro City"
/>
@@ -124,17 +122,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
tag="Get in Touch"
title="Ready to Build Together?"
description="Whether it's a new installation project or you just need information about the city, we are here to help."
buttons={[{ text: "Contact Us", href: "#" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Cabro City"
@@ -145,4 +132,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -23,11 +23,11 @@ export default function ProductsPage() {
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/#hero" },
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName="Cabro City"
/>
@@ -59,4 +59,4 @@ export default function ProductsPage() {
</ReactLenis>
</ThemeProvider>
);
}
}