4 Commits

Author SHA1 Message Date
f97ee5b6e6 Update src/app/page.tsx 2026-03-11 12:27:40 +00:00
984b31ea32 Merge version_2 into main
Merge version_2 into main
2026-03-11 12:26:10 +00:00
6c1daf4283 Update src/app/page.tsx 2026-03-11 12:26:06 +00:00
95b0bec3fa Merge version_1 into main
Merge version_1 into main
2026-03-11 12:22:41 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Book, HandshakeIcon, Heart, HelpCircle, Lightbulb, Mail, MessageCircle, Sparkles, Users } from 'lucide-react';
import { Book, HandshakeIcon, Heart, HelpCircle, Lightbulb, Mail, MessageCircle, Phone, Sparkles, Users } from 'lucide-react';
export default function LandingPage() {
return (
@@ -44,7 +44,7 @@ export default function LandingPage() {
description="Welcome to our church community in Kenya. We are dedicated to spreading the Gospel, serving our community with compassion, and building a stronger faith together. Join us for worship, fellowship, and spiritual growth."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Join Our Service", href: "#contact" },
{ text: "Join Us This Sunday", href: "#contact" },
{ text: "Learn More", href: "#about" }
]}
layoutOrder="default"
@@ -195,8 +195,8 @@ export default function LandingPage() {
<ContactFaq
ctaTitle="Get in Touch with Us"
ctaDescription="Have questions or want to learn more about Grace Church? We'd love to hear from you. Contact us today to join our community."
ctaButton={{ text: "Send us a Message", href: "mailto:info@gracechurchkenya.org" }}
ctaIcon={Mail}
ctaButton={{ text: "Call Us Now", href: "tel:+254712345678" }}
ctaIcon={Phone}
faqs={[
{
id: "1", title: "What is your church location?", content: "Grace Church is located in Nairobi, Kenya. We are easily accessible via public transport and have ample parking. Visit us anytime during our office hours, Monday through Friday, 9:00 AM to 5:00 PM."
@@ -253,4 +253,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}