Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #8.
This commit is contained in:
2026-04-18 23:04:37 +00:00

View File

@@ -9,7 +9,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Shield, Zap, Target, Star, ChevronRight } from 'lucide-react';
import { Shield, Zap, Target, Star } from 'lucide-react';
export default function Page() {
const navItems = [
@@ -67,14 +67,18 @@ export default function Page() {
<FaqSplitText
sideTitle="Common Questions"
faqsAnimation="slide-up"
useInvertedBackground={false}
faqs={[{ id: "1", title: "Why us?", content: "Because we deliver." }]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="Testimonials"
description="What our clients say."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Jane", role: "CEO", company: "Corp", rating: 5 }
]}
@@ -84,6 +88,7 @@ export default function Page() {
<ContactText
text="Let's collaborate"
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
@@ -95,4 +100,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}