4 Commits

Author SHA1 Message Date
27b9226890 Merge version_3 into main
Merge version_3 into main
2026-05-07 23:16:18 +00:00
81b0786690 Update src/app/page.tsx 2026-05-07 23:16:15 +00:00
3c92db72fd Merge version_2 into main
Merge version_2 into main
2026-05-07 23:15:50 +00:00
d7ca753b24 Merge version_2 into main
Merge version_2 into main
2026-05-07 23:10:35 +00:00

View File

@@ -11,9 +11,9 @@ 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 PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, CheckCircle, Eye } from "lucide-react"; import { Award, Eye, CheckCircle } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -102,15 +102,15 @@ export default function LandingPage() {
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardThree <PricingCardFive
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
title="Flexible Pricing Plans" title="Flexible Pricing Plans"
description="Choose the perfect package for your brand's vision." description="Choose the perfect package for your brand's vision."
plans={[ 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: "basic", tag: "Most Popular", tagIcon: CheckCircle, price: "$499", period: "per project", description: "Perfect for small businesses.", featuresTitle: "Core Features", features: ["1 Film creation", "4K footage", "Basic color grade"], button: { text: "Get Started" } },
{ 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" }] } { id: "pro", tag: "Premium", tagIcon: Award, price: "$999", period: "per project", description: "Full production service.", featuresTitle: "Pro Features", features: ["Cinematic workflow", "Advanced color science", "Priority support"], button: { text: "Get Started" } }
]} ]}
/> />
</div> </div>