Update src/app/page.tsx

This commit is contained in:
2026-05-28 11:49:01 +00:00
parent cc9f50ff66
commit 7b4279517d

View File

@@ -12,15 +12,15 @@ import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Facebook, Instagram, Whatsapp } from "lucide-react";
import { Facebook, Instagram, MessageCircle } from "lucide-react";
export default function HomePage() {
const navItems = [
{
name: "Home", href: "/"
name: "Home", id: "/"
},
{
name: "About Us", href: "/about"
name: "About Us", id: "/about"
}
];
@@ -43,7 +43,7 @@ export default function HomePage() {
href: "#", ariaLabel: "Instagram"
},
{
icon: Whatsapp,
icon: MessageCircle,
href: "#", ariaLabel: "Whatsapp"
}
];
@@ -86,7 +86,6 @@ export default function HomePage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ELazFsYiafkYVopFrBaT7pxrBL/uploaded-1779968328044-rauycfax.png"
imageAlt="Luxurious event table setting"
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -121,7 +120,6 @@ export default function HomePage() {
type: "text", content: "Excellence in Every Detail"
},
]}
description="KendiJoy Catering Services and Event Organizers is a premier event planning and catering company based in Kenya. We specialize in creating luxurious, well-coordinated events with a touch of African elegance."
buttons={[
{
text: "Learn More", href: "/about"},
@@ -254,36 +252,6 @@ export default function HomePage() {
logoText="KendiJoy Catering Services"
copyrightText="© 2025 KendiJoy Catering Services. All Rights Reserved."
socialLinks={footerSocialLinks}
columns={[
{
heading: "Quick Links", items: footerNavItems,
},
{
heading: "Our Services", items: [
{
label: "Event Planning", href: "/services#event-planning"},
{
label: "Catering Services", href: "/services#catering-services"},
{
label: "Event Styling", href: "/services#event-styling"},
{
label: "MC & Entertainment", href: "/services#mc-entertainment"},
],
},
{
heading: "Contact Us", items: [
{
label: "+254 711 123 456", href: "tel:+254711123456"},
{
label: "hello@kendijoy.co.ke", href: "mailto:hello@kendijoy.co.ke"},
{
label: "Nairobi, Kenya", href: "#"},
{
label: "Mon - Sat: 8:00 AM - 6:00 PM", href: "#"},
],
},
]}
useInvertedBackground={false}
/>
</div>
</ThemeProvider>