Compare commits

4 Commits

Author SHA1 Message Date
85c45b8576 Update src/app/page.tsx 2026-02-05 13:51:14 +00:00
0583cdfab0 Update src/app/page.tsx 2026-02-05 13:50:06 +00:00
ece77503ba Update src/app/page.tsx 2026-02-05 13:48:53 +00:00
0cce0d3f41 Update src/app/page.tsx 2026-02-05 13:46:49 +00:00

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -29,9 +29,8 @@ export default function LandingPage() {
brandName="iPhone Store" brandName="iPhone Store"
navItems={[ navItems={[
{ name: "Products", id: "products" }, { name: "Products", id: "products" },
{ name: "Features", id: "features" }, { name: "Features", id: "metrics" },
{ name: "Reviews", id: "reviews" }, { name: "Reviews", id: "testimonials" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Shop Now", href: "products" }} button={{ text: "Shop Now", href: "products" }}
@@ -53,7 +52,7 @@ export default function LandingPage() {
tagIcon={Sparkles} tagIcon={Sparkles}
buttons={[ buttons={[
{ text: "Buy Now", href: "products" }, { text: "Buy Now", href: "products" },
{ text: "Learn More", href: "features" } { text: "Learn More", href: "metrics" }
]} ]}
imageSrc="https://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg" imageSrc="https://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg"
imageAlt="Latest iPhone showcase" imageAlt="Latest iPhone showcase"
@@ -82,7 +81,7 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="invertDefault" useInvertedBackground="noInvert"
/> />
</div> </div>
@@ -110,15 +109,27 @@ export default function LandingPage() {
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Chen", role: "Designer", company: "Creative Studio", rating: 5, id: "1", name: "Sarah Chen", role: "Designer", company: "Creative Studio", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/business-owner-working-their-strategy_23-2149241318.jpg" imageSrc: "https://img.b2bpic.net/free-photo/business-owner-working-their-strategy_23-2149241318.jpg", imageAlt: "Sarah Chen"
}, },
{ {
id: "2", name: "Michael Rodriguez", role: "Photographer", company: "Visual Media Co", rating: 5, id: "2", name: "Michael Rodriguez", role: "Photographer", company: "Visual Media Co", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/portrait-young-pretty-woman-sitting-table-trench-coat-working-laptop-co-working-office-wearing-glasses-smiling-happy-positive-workplace_285396-65.jpg" imageSrc: "https://img.b2bpic.net/free-photo/portrait-young-pretty-woman-sitting-table-trench-coat-working-laptop-co-working-office-wearing-glasses-smiling-happy-positive-workplace_285396-65.jpg", imageAlt: "Michael Rodriguez"
}, },
{ {
id: "3", name: "Emma Thompson", role: "Business Owner", company: "Tech Ventures", rating: 5, id: "3", name: "Emma Thompson", role: "Business Owner", company: "Tech Ventures", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/side-view-woman-holding-tablet_23-2149927578.jpg" imageSrc: "https://img.b2bpic.net/free-photo/side-view-woman-holding-tablet_23-2149927578.jpg", imageAlt: "Emma Thompson"
},
{
id: "4", name: "James Wilson", role: "Developer", company: "Innovation Labs", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/portrait-lovely-woman-fashion-glasses-home_329181-4275.jpg", imageAlt: "James Wilson"
},
{
id: "5", name: "Lisa Park", role: "Marketing Lead", company: "Brand Collective", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/portrait-confident-businesswoman-smiling_23-2148452708.jpg", imageAlt: "Lisa Park"
},
{
id: "6", name: "David Kumar", role: "Entrepreneur", company: "StartupX", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-woman-posing-office_23-2149392072.jpg", imageAlt: "David Kumar"
} }
]} ]}
kpiItems={[ kpiItems={[
@@ -128,7 +139,7 @@ export default function LandingPage() {
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="invertDefault" useInvertedBackground="noInvert"
/> />
</div> </div>
@@ -169,9 +180,9 @@ export default function LandingPage() {
}, },
{ {
items: [ items: [
{ label: "Company", href: "about" }, { label: "Company", href: "#" },
{ label: "About Us", href: "about" }, { label: "About Us", href: "#" },
{ label: "Career", href: "about" } { label: "Career", href: "#" }
] ]
}, },
{ {