Update src/app/page.tsx
This commit is contained in:
@@ -3,13 +3,15 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import FeatureProcessSteps from '@/components/sections/feature/FeatureProcessSteps';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Package } from 'lucide-react';
|
||||
import { Package, TrendingUp, Users, CheckCircle } from 'lucide-react';
|
||||
|
||||
export default function SitePage() {
|
||||
return (
|
||||
@@ -29,10 +31,12 @@ export default function SitePage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Moments", id: "features" },
|
||||
{ name: "Metrics", id: "metrics" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Stories", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
]}
|
||||
brandName="In My Life"
|
||||
button={{ text: "View Gallery", href: "#gallery" }}
|
||||
@@ -67,6 +71,22 @@ export default function SitePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
metrics={[
|
||||
{ id: '1', value: '100', title: 'million', description: 'Impressions generated annually', icon: TrendingUp },
|
||||
{ id: '2', value: '700', title: 'thousand', description: 'Unique visitors each month', icon: Users }
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="See the reach and engagement of our visual stories."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
tag="Statistics"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureProcessSteps
|
||||
title="Featured Moments"
|
||||
@@ -162,6 +182,22 @@ export default function SitePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
plans={[
|
||||
{ id: '1', badge: 'Basic', badgeIcon: CheckCircle, price: '$9/mo', subtitle: 'Perfect for enthusiasts', features: ['50GB Storage', 'Standard Support', 'Basic Filters'] },
|
||||
{ id: '2', badge: 'Pro', badgeIcon: CheckCircle, price: '$29/mo', subtitle: 'Ideal for professionals', features: ['500GB Storage', 'Priority Support', 'Advanced Editing Tools'] },
|
||||
{ id: '3', badge: 'Enterprise', badgeIcon: CheckCircle, price: '$99/mo', subtitle: 'For agencies & teams', features: ['Unlimited Storage', 'Dedicated Account Manager', 'Custom Integrations'] }
|
||||
]}
|
||||
title="Choose Your Plan"
|
||||
description="Select the perfect plan to expand your photographic journey."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
tag="Membership"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="In My Life"
|
||||
@@ -172,4 +208,4 @@ export default function SitePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user