Merge version_9_1782874268607 into main

Merge version_9_1782874268607 into main
This commit was merged in pull request #10.
This commit is contained in:
2026-07-01 02:52:45 +00:00
2 changed files with 28 additions and 1 deletions

View File

@@ -15,10 +15,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials';
import ContactSection from './HomePage/sections/Contact';
import TrustMetricsSection from './HomePage/sections/TrustMetrics';export default function HomePage(): React.JSX.Element {
import TrustMetricsSection from './HomePage/sections/TrustMetrics';
import VerseSection from './HomePage/sections/Verse';export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<VerseSection />
<AboutSection />
<TrustMetricsSection />

View File

@@ -0,0 +1,25 @@
import { motion } from "motion/react"
import TextAnimation from "@/components/ui/TextAnimation"
export default function VerseSection() {
return (
<section data-webild-section="verse" id="verse" className="relative w-full py-24 md:py-32 bg-background flex items-center justify-center overflow-hidden">
<div className="w-content-width mx-auto text-center flex flex-col items-center justify-center">
<TextAnimation
text="ABC GROUP"
variant="fade-blur"
tag="h2"
className="text-6xl md:text-8xl lg:text-[10rem] font-bold text-foreground tracking-tighter mb-4 leading-none"
gradientText={false}
/>
<TextAnimation
text="With God nothing shall be impossible. - Luke 1:37"
variant="fade-blur"
tag="p"
className="text-xl md:text-3xl lg:text-4xl font-medium text-accent"
gradientText={false}
/>
</div>
</section>
)
}