2 Commits

Author SHA1 Message Date
3c3d669c55 Update src/app/page.tsx 2026-04-05 01:56:13 +00:00
4a297d0189 Merge version_1 into main
Merge version_1 into main
2026-04-05 01:53:56 +00:00

View File

@@ -2,15 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroLogo from '@/components/sections/hero/HeroLogo'; import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -31,21 +29,13 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "hero"},
id: "hero",
},
{ {
name: "Movies", name: "Movies", id: "movies"},
id: "movies",
},
{ {
name: "Anime", name: "Anime", id: "anime"},
id: "anime",
},
{ {
name: "Plans", name: "Support", id: "faq"},
id: "pricing",
},
]} ]}
brandName="Telugu4K" brandName="Telugu4K"
/> />
@@ -57,9 +47,7 @@ export default function LandingPage() {
description="Experience your favorite Telugu movies, binge-worthy web series, and trending anime in pristine 4K quality. Anytime, anywhere." description="Experience your favorite Telugu movies, binge-worthy web series, and trending anime in pristine 4K quality. Anytime, anywhere."
buttons={[ buttons={[
{ {
text: "Start Watching", text: "Start Watching", href: "#movies"},
href: "#movies",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/tablet-magazines_1162-110.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/tablet-magazines_1162-110.jpg?_wi=1"
/> />
@@ -73,59 +61,17 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
id: "m1", id: "m1", name: "The Telugu Epic", brand: "Blockbuster", price: "4K UHD", rating: 5,
name: "The Telugu Epic", reviewCount: "10k+", imageSrc: "http://img.b2bpic.net/free-photo/princess-prince-digital-art_23-2151610495.jpg?_wi=1"},
brand: "Blockbuster",
price: "4K UHD",
rating: 5,
reviewCount: "10k+",
imageSrc: "http://img.b2bpic.net/free-photo/princess-prince-digital-art_23-2151610495.jpg?_wi=1",
},
{ {
id: "m2", id: "m2", name: "Romantic Vibe", brand: "Web Series", price: "4K UHD", rating: 5,
name: "Romantic Vibe", reviewCount: "8k+", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-representing-leo-zodiac-sign-with-real-lion_23-2151006290.jpg?_wi=1"},
brand: "Web Series",
price: "4K UHD",
rating: 5,
reviewCount: "8k+",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-representing-leo-zodiac-sign-with-real-lion_23-2151006290.jpg?_wi=1",
},
{ {
id: "m3", id: "m3", name: "Family Drama", brand: "Cinema", price: "4K UHD", rating: 4,
name: "Family Drama", reviewCount: "5k+", imageSrc: "http://img.b2bpic.net/free-photo/slim-woman-holding-hands-with-young-man-street_23-2148012608.jpg?_wi=1"},
brand: "Cinema",
price: "4K UHD",
rating: 4,
reviewCount: "5k+",
imageSrc: "http://img.b2bpic.net/free-photo/slim-woman-holding-hands-with-young-man-street_23-2148012608.jpg?_wi=1",
},
{ {
id: "m4", id: "m4", name: "Action Saga", brand: "Action", price: "4K UHD", rating: 5,
name: "Action Saga", reviewCount: "12k+", imageSrc: "http://img.b2bpic.net/free-photo/princess-prince-digital-art_23-2151610495.jpg?_wi=2"},
brand: "Action",
price: "4K UHD",
rating: 5,
reviewCount: "12k+",
imageSrc: "http://img.b2bpic.net/free-photo/princess-prince-digital-art_23-2151610495.jpg?_wi=2",
},
{
id: "m5",
name: "Mystery Thriller",
brand: "Series",
price: "4K UHD",
rating: 4,
reviewCount: "6k+",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-representing-leo-zodiac-sign-with-real-lion_23-2151006290.jpg?_wi=2",
},
{
id: "m6",
name: "Classic Hits",
brand: "Legendary",
price: "4K UHD",
rating: 5,
reviewCount: "9k+",
imageSrc: "http://img.b2bpic.net/free-photo/slim-woman-holding-hands-with-young-man-street_23-2148012608.jpg?_wi=2",
},
]} ]}
title="Top Telugu Hits" title="Top Telugu Hits"
description="Stream the latest blockbusters and classic masterpieces." description="Stream the latest blockbusters and classic masterpieces."
@@ -139,216 +85,74 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ {
id: "a1", id: "a1", title: "Epic Action", tags: [
title: "Epic Action", "Dubbed"],
tags: [ imageSrc: "http://img.b2bpic.net/free-photo/anime-style-character-space_23-2151133922.jpg"},
"Dubbed",
],
imageSrc: "http://img.b2bpic.net/free-photo/anime-style-character-space_23-2151133922.jpg",
},
{ {
id: "a2", id: "a2", title: "Fantasy Worlds", tags: [
title: "Fantasy Worlds", "HD"],
tags: [ imageSrc: "http://img.b2bpic.net/free-photo/cute-anime-fairy-girl_23-2151567502.jpg"},
"HD",
],
imageSrc: "http://img.b2bpic.net/free-photo/cute-anime-fairy-girl_23-2151567502.jpg",
},
{
id: "a3",
title: "Dark Intensity",
tags: [
"4K",
],
imageSrc: "http://img.b2bpic.net/free-photo/fantasy-dj-illustration_23-2151642211.jpg",
},
]} ]}
title="Anime in Telugu" title="Anime in Telugu"
description="Your favorite anime series dubbed in Telugu, now in 4K." description="Your favorite anime series dubbed in Telugu, now in 4K."
/> />
</div> </div>
<div id="pricing" data-section="pricing">
<PricingCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "basic",
name: "Basic",
price: "₹199",
features: [
"Full HD Access",
"1 Device",
],
buttons: [
{
text: "Subscribe",
},
],
},
{
id: "pro",
name: "Pro",
price: "₹499",
features: [
"4K UHD Quality",
"4 Devices",
],
buttons: [
{
text: "Subscribe",
},
],
},
{
id: "ultra",
name: "Ultra",
price: "₹999",
features: [
"4K HDR Quality",
"8 Devices",
"Offline Download",
],
buttons: [
{
text: "Subscribe",
},
],
},
]}
title="Membership Plans"
description="Choose the best plan for endless entertainment."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "1",
name: "Ravi Kumar",
role: "Fan",
testimonial: "The 4K quality is unmatched!",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-wearing-casual-blue-shirt-success-sign-doing-positive-gesture-with-hand-thumbs-up-smiling-happy-cheerful-expression-winner-gesture_839833-2022.jpg",
},
{
id: "2",
name: "Priya Reddy",
role: "Fan",
testimonial: "Best collection of anime in Telugu.",
imageSrc: "http://img.b2bpic.net/free-photo/looking-arrogant-successful-positive-proud-pointing-self_1194-632375.jpg?_wi=1",
},
{
id: "3",
name: "Suresh V",
role: "Fan",
testimonial: "Smooth streaming experience always.",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-girl-posing-studio_176474-65930.jpg",
},
{
id: "4",
name: "Ananya K",
role: "Fan",
testimonial: "Love the latest movie updates.",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-confident-standing-street_839833-33403.jpg",
},
{
id: "5",
name: "Vikram N",
role: "Fan",
testimonial: "Highly recommended for families.",
imageSrc: "http://img.b2bpic.net/free-photo/looking-arrogant-successful-positive-proud-pointing-self_1194-632375.jpg?_wi=2",
},
]}
title="Fan Feedback"
description="See why thousands of Telugu movie lovers prefer us."
/>
</div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitMedia <FaqBase
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "Do you support Telugu regional content?", content: "Yes! We specialize in premium 4K Telugu cinema, web series, and dubbed anime content."},
title: "Is everything in 4K?",
content: "Yes, all premium titles are available in 4K.",
},
{ {
id: "q2", id: "q2", title: "Is 4K streaming available on mobile?", content: "Absolutely, our player automatically adjusts quality based on your internet connection for the best experience."},
title: "How to watch anime?",
content: "Just select the anime tab in our header.",
},
{ {
id: "q3", id: "q3", title: "How do I report playback issues?", content: "If you encounter buffering or playback errors, please contact our support team directly through the contact section below."},
title: "Can I cancel anytime?", {
content: "Yes, you can cancel your subscription whenever you want.", id: "q4", title: "Are subtitles available in Telugu?", content: "Many of our titles feature embedded Telugu subtitles and audio tracks for an immersive viewing experience."},
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/tablet-magazines_1162-110.jpg?_wi=2" title="Telugu4K Help Center"
mediaAnimation="slide-up" description="Answers to common questions about our platform and streaming services."
title="Help Center"
description="Have questions about our streaming service?"
faqsAnimation="slide-up" faqsAnimation="slide-up"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCTA
useInvertedBackground={true} tag="Get Support"
background={{ title="Need assistance with your stream?"
variant: "sparkles-gradient", description="Our dedicated Telugu support team is available 24/7 to help you with playback issues, account settings, or feedback."
}}
text="Join the biggest Telugu streaming community today!"
buttons={[ buttons={[
{ {
text: "Contact Support", text: "Email Support", href: "mailto:support@telugu4k.com"},
href: "#",
},
]} ]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterSimple
columns={[ columns={[
{ {
title: "Company", title: "Content", items: [
items: [ { label: "Movies", href: "#movies" },
{ { label: "Anime", href: "#anime" },
label: "About",
href: "#",
},
{
label: "Blog",
href: "#",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [ { label: "Help Center", href: "#faq" },
{ { label: "Contact Us", href: "#contact" },
label: "FAQ",
href: "#",
},
{
label: "Contact",
href: "#",
},
], ],
}, },
]} ]}
logoText="Telugu4K" bottomLeftText="© 2025 Telugu4K"
bottomRightText="Built for Telugu cinema lovers"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }