Merge version_1 into main #5

Merged
bender merged 1 commits from version_1 into main 2026-04-17 04:45:18 +00:00

View File

@@ -9,8 +9,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Shield, Zap, Target, Star } from 'lucide-react';
import Link from 'next/link';
import { Shield, Zap, Star } from 'lucide-react';
export default function HomePage() {
const navItems = [{ name: "Home", id: "/" }];
@@ -31,6 +30,7 @@ export default function HomePage() {
title="Our Impact"
metrics={[ { icon: Shield, label: "Trust", value: "100%" }, { icon: Zap, label: "Speed", value: "Fast" } ]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="menu" data-section="menu">
@@ -40,6 +40,7 @@ export default function HomePage() {
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Brand A", name: "Product 1", price: "$99", rating: 5, reviewCount: "10", imageSrc: "https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=800&auto=format&fit=crop&q=60" },
{ id: "2", brand: "Brand B", name: "Product 2", price: "$149", rating: 4, reviewCount: "25", imageSrc: "https://images.unsplash.com/photo-1523275335684-37898b6baf30?w=800&auto=format&fit=crop&q=60" },
@@ -53,6 +54,7 @@ export default function HomePage() {
description="Experience our core functionalities."
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ id: "f1", title: "Reliability", description: "Built to last.", tag: "Core" },
{ id: "f2", title: "Innovation", description: "Ahead of the curve.", tag: "New" }
@@ -65,6 +67,7 @@ export default function HomePage() {
description="Trusted by professionals globally."
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "John Doe", role: "CEO", testimonial: "Fantastic service!", icon: Star },
{ id: "t2", name: "Jane Smith", role: "CTO", testimonial: "Simply the best.", icon: Star }
@@ -78,6 +81,7 @@ export default function HomePage() {
animationType="slide-up"
gridVariant="four-items-2x2-equal-grid"
textboxLayout="default"
useInvertedBackground={false}
members={[
{ id: "m1", name: "Alice", role: "Director", description: "Leading the team." },
{ id: "m2", name: "Bob", role: "Head of Tech", description: "Tech wizard." }
@@ -88,6 +92,7 @@ export default function HomePage() {
<ContactSplitForm
title="Contact Us"
description="Get in touch with our team."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }