diff --git a/src/app/page.tsx b/src/app/page.tsx index ccc608e..2356ace 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,6 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import Link from "next/link"; export default function Page() { const navItems = [ @@ -36,6 +35,8 @@ export default function Page() { description="Advanced tools built to empower your growth." accordionItems={[{ id: "1", title: "Scalability", content: "Scale your business effortlessly." }, { id: "2", title: "Performance", content: "Unmatched speed and reliability." }]} mediaAnimation="slide-up" + useInvertedBackground={false} + imageSrc="https://images.unsplash.com/photo-1551434678-e076c223a692" />
@@ -45,6 +46,7 @@ export default function Page() { gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" + useInvertedBackground={false} products={[ { id: "1", brand: "Brand A", name: "Item 1", price: "$99", rating: 5, reviewCount: "10", imageSrc: "https://images.unsplash.com/photo-1523275335684-37898b6baf30" }, { id: "2", brand: "Brand B", name: "Item 2", price: "$149", rating: 4, reviewCount: "20", imageSrc: "https://images.unsplash.com/photo-1505740420928-5e560c06d30e" }, @@ -59,6 +61,7 @@ export default function Page() { gridVariant="three-columns-all-equal-width" animationType="slide-up" textboxLayout="default" + useInvertedBackground={false} testimonials={[ { id: "t1", name: "Alice", role: "CEO", company: "Tech Corp", rating: 5, imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330" }, { id: "t2", name: "Bob", role: "CTO", company: "Innovate Inc", rating: 5, imageSrc: "https://images.unsplash.com/photo-1599566150163-29194dcaad36" } @@ -69,6 +72,7 @@ export default function Page() {