Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ee75cf921b | |||
| cbaf17fdd9 | |||
| 10bbb1f669 | |||
| ed49abd00c |
@@ -10,8 +10,8 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|||||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -35,7 +35,8 @@ export default function LandingPage() {
|
|||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Movies", id: "products" },
|
{ name: "Movies", id: "products" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Movie Hindi", id: "movie-hindi" }
|
||||||
]}
|
]}
|
||||||
brandName="Movie 2026"
|
brandName="Movie 2026"
|
||||||
/>
|
/>
|
||||||
@@ -95,36 +96,32 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardOne
|
<ProductCardThree
|
||||||
animationType="scale-rotate"
|
animationType="blur-reveal"
|
||||||
textboxLayout="default"
|
|
||||||
gridVariant="two-columns-alternating-heights"
|
gridVariant="two-columns-alternating-heights"
|
||||||
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
|
||||||
{ id: "1", name: "Star Horizon", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/woman-water-with-red-bookcase_1122-986.jpg" },
|
|
||||||
{ id: "2", name: "Velocity Run", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/abstract-vaporwave-portrait-man_23-2148950762.jpg" },
|
|
||||||
{ id: "3", name: "Silent Echo", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/halloween-party-illustration-poster_23-2151846236.jpg" },
|
|
||||||
{ id: "4", name: "Broken Sky", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/front-view-couple-with-map-inside-car-going-road-trip-together_23-2148783429.jpg" },
|
|
||||||
{ id: "5", name: "Neo Realm", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-representing-capricorn-zodiac-sign-with-ram_23-2151006318.jpg" },
|
|
||||||
{ id: "6", name: "Documentary 2026", price: "$8", imageSrc: "http://img.b2bpic.net/free-photo/portrait-person-with-visual-metaphor-memory_23-2151240851.jpg" }
|
|
||||||
]}
|
|
||||||
title="Trending 2026 Releases"
|
title="Trending 2026 Releases"
|
||||||
description="Explore the most anticipated movies this year."
|
description="Explore the most anticipated movies this year."
|
||||||
|
products={[
|
||||||
|
{ id: "1", name: "Star Horizon", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/woman-water-with-red-bookcase_1122-986.jpg", priceButtonProps: { text: "Purchase" } },
|
||||||
|
{ id: "2", name: "Velocity Run", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/abstract-vaporwave-portrait-man_23-2148950762.jpg", priceButtonProps: { text: "Purchase" } },
|
||||||
|
{ id: "3", name: "Silent Echo", price: "$10", imageSrc: "http://img.b2bpic.net/free-photo/halloween-party-illustration-poster_23-2151846236.jpg", priceButtonProps: { text: "Purchase" } }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</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={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
|
||||||
{ id: "basic", price: "$29/mo", name: "Basic", buttons: [{ text: "Sign Up" }], features: ["100GB Storage", "1080p Streaming"] },
|
|
||||||
{ id: "pro", price: "$99/mo", name: "Professional", buttons: [{ text: "Sign Up" }], features: ["1TB Storage", "4K Streaming"] },
|
|
||||||
{ id: "ent", price: "$299/mo", name: "Enterprise", buttons: [{ text: "Sign Up" }], features: ["Unlimited Storage", "8K Streaming"] }
|
|
||||||
]}
|
|
||||||
title="Simple Pricing for Everyone"
|
title="Simple Pricing for Everyone"
|
||||||
description="Scale your movie distribution easily."
|
description="Scale your movie distribution easily."
|
||||||
|
plans={[
|
||||||
|
{ id: "basic", tag: "Starter", price: "$29", period: "/mo", description: "Perfect for casual creators.", button: { text: "Buy Basic" }, featuresTitle: "Core Features", features: ["100GB Storage", "1080p Streaming"] },
|
||||||
|
{ id: "pro", tag: "Popular", price: "$99", period: "/mo", description: "For serious filmmakers.", button: { text: "Buy Pro" }, featuresTitle: "Pro Features", features: ["1TB Storage", "4K Streaming"] }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -134,9 +131,7 @@ export default function LandingPage() {
|
|||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "1", name: "Alice Film", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-posing_23-2149213187.jpg" },
|
{ id: "1", name: "Alice Film", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-posing_23-2149213187.jpg" },
|
||||||
{ id: "2", name: "Bob Cine", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-woman-studio_23-2148565552.jpg" },
|
{ id: "2", name: "Bob Cine", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-woman-studio_23-2148565552.jpg" },
|
||||||
{ id: "3", name: "Charlie Direct", imageSrc: "http://img.b2bpic.net/free-photo/karate-player-man-posing-looking_107420-64916.jpg" },
|
{ id: "3", name: "Charlie Direct", imageSrc: "http://img.b2bpic.net/free-photo/karate-player-man-posing-looking_107420-64916.jpg" }
|
||||||
{ id: "4", name: "Dana Edit", imageSrc: "http://img.b2bpic.net/free-photo/cool-young-man-with-clapper_1149-1829.jpg" },
|
|
||||||
{ id: "5", name: "Evan Camera", imageSrc: "http://img.b2bpic.net/free-photo/female-filmmaker-editing-montage-video-clips-with-creative-software_482257-119137.jpg" }
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Loved by the community"
|
cardTitle="Loved by the community"
|
||||||
cardTag="Reviews"
|
cardTag="Reviews"
|
||||||
@@ -170,8 +165,7 @@ export default function LandingPage() {
|
|||||||
description="Expert tips for 2026 film creators."
|
description="Expert tips for 2026 film creators."
|
||||||
blogs={[
|
blogs={[
|
||||||
{ id: "b1", category: "Film", title: "Future of Cinema", excerpt: "What to expect in 2026.", imageSrc: "http://img.b2bpic.net/free-photo/charming-young-woman-looks-old-photoalbums-sitting-cafe_8353-1394.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/low-view-smiley-photographer-photography-umbrella_23-2148424404.jpg", date: "Jan 2026" },
|
{ id: "b1", category: "Film", title: "Future of Cinema", excerpt: "What to expect in 2026.", imageSrc: "http://img.b2bpic.net/free-photo/charming-young-woman-looks-old-photoalbums-sitting-cafe_8353-1394.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/low-view-smiley-photographer-photography-umbrella_23-2148424404.jpg", date: "Jan 2026" },
|
||||||
{ id: "b2", category: "Tech", title: "Streaming Tech", excerpt: "Optimizing your uploads.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-retro-camera-necktie_23-2147624716.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-young-man-recording-podcast_23-2149386521.jpg", date: "Feb 2026" },
|
{ id: "b2", category: "Tech", title: "Streaming Tech", excerpt: "Optimizing your uploads.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-retro-camera-necktie_23-2147624716.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-young-man-recording-podcast_23-2149386521.jpg", date: "Feb 2026" }
|
||||||
{ id: "b3", category: "Story", title: "Storytelling Tips", excerpt: "Crafting great scripts.", imageSrc: "http://img.b2bpic.net/free-photo/female-photographer-blurred-models_23-2148565568.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/man-with-popcorn-one-hand-package-other_1187-1637.jpg", date: "Mar 2026" }
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -185,6 +179,13 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="movie-hindi" data-section="movie-hindi">
|
||||||
|
<div className="py-20 text-center">
|
||||||
|
<h2 className="text-4xl font-bold">Movie Hindi</h2>
|
||||||
|
<p className="mt-4 text-lg text-muted-foreground">Discover the best Hindi cinema collections.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="Movie 2026"
|
logoText="Movie 2026"
|
||||||
@@ -197,4 +198,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user