diff --git a/src/app/page.tsx b/src/app/page.tsx index 7d0f6d4..913f645 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,7 +21,7 @@ const navItems = [ export default function Page() { return ( - + @@ -31,10 +31,11 @@ export default function Page() { description="Next-generation digital experiences" background={{ variant: "animated-grid" }} mediaItems={[ - { imageSrc: "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe", imageAlt: "Abstract art" }, - { imageSrc: "https://images.unsplash.com/photo-1614850523459-c2f4c699c52e", imageAlt: "Digital art" }, - { imageSrc: "https://images.unsplash.com/photo-1620121692029-d088224ddc74", imageAlt: "Tech art" } + { imageSrc: "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe" }, + { imageSrc: "https://images.unsplash.com/photo-1614850523459-c2f4c699c52e" }, + { imageSrc: "https://images.unsplash.com/photo-1620121692029-d088224ddc74" } ]} + mediaAnimation="blur-reveal" />
@@ -61,6 +62,12 @@ export default function Page() { textboxLayout="default" useInvertedBackground={false} title="Portfolio" + description="Our selected creative work." + products={[ + { id: "p1", name: "Web Design", price: "$500", variant: "Standard", imageSrc: "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe" }, + { id: "p2", name: "Logo Design", price: "$200", variant: "Premium", imageSrc: "https://images.unsplash.com/photo-1614850523459-c2f4c699c52e" }, + { id: "p3", name: "Full Stack", price: "$1000", variant: "Enterprise", imageSrc: "https://images.unsplash.com/photo-1620121692029-d088224ddc74" } + ]} />
@@ -69,6 +76,7 @@ export default function Page() { animationType="blur-reveal" textboxLayout="default" useInvertedBackground={false} + description="What our clients say about us." testimonials={[ { id: "1", name: "Alex", handle: "@alex", testimonial: "Excellent work!", icon: Globe }, { id: "2", name: "Sam", handle: "@sam", testimonial: "Highly recommended.", icon: Star } @@ -79,7 +87,8 @@ export default function Page() {