3 Commits

Author SHA1 Message Date
dd6e50ed7d Update src/app/page.tsx 2026-05-07 23:15:47 +00:00
42cbb08f34 Update src/app/page.tsx 2026-05-07 23:10:32 +00:00
57aa43acf6 Merge version_1 into main
Merge version_1 into main
2026-05-07 23:00:26 +00:00

View File

@@ -11,6 +11,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, CheckCircle, Eye } from "lucide-react"; import { Award, CheckCircle, Eye } from "lucide-react";
@@ -35,6 +36,7 @@ export default function LandingPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Portfolio", id: "portfolio" }, { name: "Portfolio", id: "portfolio" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
brandName="Lens & Light" brandName="Lens & Light"
@@ -49,7 +51,7 @@ export default function LandingPage() {
tag="Expert Videography" tag="Expert Videography"
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183613.jpg", imageAlt: "cinematic videographer filming"}, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DPrmV0bLULWV9W9wUoJUlitJK7/uploaded-1778195022557-c2olftzh.jpg", imageAlt: "cinematic videographer filming"},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/bright-lights-dark-room_23-2147786121.jpg", imageAlt: "cinema camera lens closeup"} imageSrc: "http://img.b2bpic.net/free-photo/bright-lights-dark-room_23-2147786121.jpg", imageAlt: "cinema camera lens closeup"}
]} ]}
@@ -91,7 +93,7 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ title: "Film Production", description: "Full-cycle production from pre-planning to final color grading.", imageSrc: "http://img.b2bpic.net/free-photo/collage-about-movie-time-with-film-roll_23-2149946310.jpg" }, { title: "Film Production", description: "Full-cycle production from pre-planning to final color grading.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DPrmV0bLULWV9W9wUoJUlitJK7/uploaded-1778195022557-zistqlig.jpg" },
{ title: "Advanced Color Grading", description: "Professional color science applied to every frame to match your brand style.", imageSrc: "http://img.b2bpic.net/free-photo/photographer-using-headphones-listen-favorite-songs-while-using-retouching-software_482257-82252.jpg" } { title: "Advanced Color Grading", description: "Professional color science applied to every frame to match your brand style.", imageSrc: "http://img.b2bpic.net/free-photo/photographer-using-headphones-listen-favorite-songs-while-using-retouching-software_482257-82252.jpg" }
]} ]}
title="My Professional Services" title="My Professional Services"
@@ -99,6 +101,20 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<PricingCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Flexible Pricing Plans"
description="Choose the perfect package for your brand's vision."
plans={[
{ id: "basic", name: "Starter", price: "$499", features: ["1 zi filmare / lună", "5 Reels verticale editate", "Formular onboarding"], buttons: [{ text: "Get Started", href: "#contact" }] },
{ id: "pro", name: "Professional", price: "$999", features: ["Up to 5 mins film", "Advanced color grading", "4K resolution", "Priority support"], buttons: [{ text: "Get Started", href: "#contact" }] }
]}
/>
</div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardOne <MetricCardOne
animationType="depth-3d" animationType="depth-3d"
@@ -161,7 +177,7 @@ export default function LandingPage() {
logoText="Lens & Light" logoText="Lens & Light"
columns={[ columns={[
{ {
title: "Navigation", items: [{ label: "Portfolio", href: "#portfolio" }, { label: "Services", href: "#services" }] title: "Navigation", items: [{ label: "Portfolio", href: "#portfolio" }, { label: "Services", href: "#services" }, { label: "Pricing", href: "#pricing" }]
}, },
{ {
title: "Social", items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Twitter", href: "https://twitter.com" }] title: "Social", items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Twitter", href: "https://twitter.com" }]
@@ -172,4 +188,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }