4 Commits

Author SHA1 Message Date
d4b362a665 Merge version_2 into main
Merge version_2 into main
2026-03-25 14:53:37 +00:00
667f243def Update src/app/page.tsx 2026-03-25 14:53:34 +00:00
bef21b1c97 Merge version_2 into main
Merge version_2 into main
2026-03-25 14:53:10 +00:00
59ae42634c Update src/app/page.tsx 2026-03-25 14:53:07 +00:00

View File

@@ -6,7 +6,6 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento"; import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import ContactCenter from "@/components/sections/contact/ContactCenter"; import ContactCenter from "@/components/sections/contact/ContactCenter";
@@ -16,40 +15,33 @@ export default function SaasTemplatePage() {
const navItems = [ const navItems = [
{ name: "Features", id: "features" }, { name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "pricing" },
{ name: "About", id: "about" }, { name: "Our Principles", id: "/saas-development" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" }
]; ];
const avatars = [ const avatars = [
{ src: "/templates/luxury-travel-agency/testimonial/testimonial1.webp", alt: "User 1" }, { src: "/templates/luxury-travel-agency/testimonial/testimonial1.webp", alt: "User 1" },
{ src: "/templates/skincare/image5.avif", alt: "User 1" }, { src: "/templates/skincare/image5.avif", alt: "User 1" },
{ src: "/templates/skincare/image7.avif", alt: "User 1" }, { src: "/templates/skincare/image7.avif", alt: "User 1" },
{ src: "/templates/skincare/image8.avif", alt: "User 1" }, { src: "/templates/skincare/image8.avif", alt: "User 1" }
]; ];
const features: FeatureCard[] = [ const features: FeatureCard[] = [
{ {
bentoComponent: "globe", bentoComponent: "globe", title: "Global Reach", description: "Connect with users worldwide through our distributed infrastructure"
title: "Global Reach",
description: "Connect with users worldwide through our distributed infrastructure",
}, },
{ {
bentoComponent: "marquee", bentoComponent: "marquee", variant: "text", centerIcon: Zap,
variant: "text",
centerIcon: Zap,
texts: ["Fast", "Reliable", "Secure", "Scalable", "Modern"], texts: ["Fast", "Reliable", "Secure", "Scalable", "Modern"],
title: "Built for Speed", title: "Built for Speed", description: "Lightning fast performance with optimized delivery"
description: "Lightning fast performance with optimized delivery",
}, },
{ {
bentoComponent: "3d-stack-cards", bentoComponent: "3d-stack-cards", items: [
items: [
{ icon: Shield, title: "Security", subtitle: "Enterprise-grade", detail: "Bank-level encryption" }, { icon: Shield, title: "Security", subtitle: "Enterprise-grade", detail: "Bank-level encryption" },
{ icon: Rocket, title: "Performance", subtitle: "99.9% uptime", detail: "Always available" }, { icon: Rocket, title: "Performance", subtitle: "99.9% uptime", detail: "Always available" },
{ icon: Target, title: "Accuracy", subtitle: "100% reliable", detail: "Data you can trust" }, { icon: Target, title: "Accuracy", subtitle: "100% reliable", detail: "Data you can trust" }
], ],
title: "Built for Scale", title: "Built for Scale", description: "Deploy to any region with automatic failover support"
description: "Deploy to any region with automatic failover support",
} }
]; ];
@@ -61,188 +53,156 @@ export default function SaasTemplatePage() {
brandName="SaasApp" brandName="SaasApp"
button={{ text: "Get Started", href: "#" }} button={{ text: "Get Started", href: "#" }}
/> />
<HeroCentered <div id="hero" data-section="hero">
background={{ variant: "rotated-rays-animated-grid" }} <HeroCentered
avatars={avatars} background={{ variant: "rotated-rays-animated-grid" }}
avatarText="Trusted by 1000+ users" avatars={avatars}
title="Build Modern Web Experiences-Out of the world california apple" avatarText="Trusted by 1000+ users"
description="Create stunning, responsive websites with our comprehensive component library designed" title="Build Modern Web Experiences-Out of the world california apple"
buttons={[ description="Create stunning, responsive websites with our comprehensive component library designed"
{ buttons={[
text: "Get Started", {
onClick: () => console.log("Get Started clicked"), text: "Get Started", onClick: () => console.log("Get Started clicked")
}, },
{ {
text: "Learn More", text: "Learn More", onClick: () => console.log("Learn More clicked")
onClick: () => console.log("Learn More clicked"), }
}, ]}
]} marqueeItems={[
marqueeItems={[ { type: "text-icon", text: "Lightning Fast", icon: Zap },
{ type: "text-icon", text: "Lightning Fast", icon: Zap }, { type: "text-icon", text: "Enterprise Security", icon: Shield },
{ type: "text-icon", text: "Enterprise Security", icon: Shield }, { type: "text-icon", text: "99.9% Uptime", icon: Rocket },
{ type: "text-icon", text: "99.9% Uptime", icon: Rocket }, { type: "text-icon", text: "Precision Targeting", icon: Target },
{ type: "text-icon", text: "Precision Targeting", icon: Target }, { type: "text-icon", text: "AI Powered", icon: Sparkles }
{ type: "text-icon", text: "AI Powered", icon: Sparkles }, ]}
]} />
/> </div>
<FeatureBento <div id="features" data-section="features">
features={features} <FeatureBento
animationType="none" features={features}
tag="Features" animationType="none"
title="Powerful Features" tag="Features"
description="Everything you need to build and scale your product" title="Powerful Features"
textboxLayout="default" description="Everything you need to build and scale your product"
useInvertedBackground={false} textboxLayout="default"
/> useInvertedBackground={false}
<FeatureBorderGlow />
tag="Why Choose Us" </div>
tagIcon={Users} <div id="why-choose-us" data-section="why-choose-us">
title="Built by developers, for developers" <FeatureBorderGlow
description="We understand the challenges of modern software development because we face them every day." tag="Why Choose Us"
animationType="slide-up" tagIcon={Users}
textboxLayout="default" title="Built by developers, for developers"
useInvertedBackground={false} description="We understand the challenges of modern software development because we face them every day."
features={[ animationType="slide-up"
{ textboxLayout="default"
icon: Layers, useInvertedBackground={false}
title: "Modular Architecture", features={[
description: "Build with composable components that scale with your needs", {
}, icon: Layers,
{ title: "Modular Architecture", description: "Build with composable components that scale with your needs"
icon: Code, },
title: "Developer Experience", {
description: "Clean APIs and comprehensive documentation for faster development", icon: Code,
}, title: "Developer Experience", description: "Clean APIs and comprehensive documentation for faster development"
{ },
icon: Shield, {
title: "Enterprise Security", icon: Shield,
description: "Bank-level encryption and compliance with industry standards", title: "Enterprise Security", description: "Bank-level encryption and compliance with industry standards"
}, },
{ {
icon: Rocket, icon: Rocket,
title: "Lightning Fast", title: "Lightning Fast", description: "Optimized for performance with sub-second response times"
description: "Optimized for performance with sub-second response times", }
}, ]}
]} />
/> </div>
<TestimonialCardFifteen <div id="pricing" data-section="pricing">
testimonial="This platform has completely transformed how we build products. The developer experience is unmatched." <PricingCardEight
rating={5} tag="Pricing"
author="Sarah Chen, CTO at TechFlow" tagIcon={Sparkles}
avatars={avatars} title="Simple, transparent pricing"
ratingAnimation="slide-up" description="Choose the plan that works best for you. All plans include a 14-day free trial."
avatarsAnimation="slide-up" animationType="opacity"
useInvertedBackground={false} textboxLayout="default"
/> useInvertedBackground={false}
<PricingCardEight plans={[
tag="Pricing" {
tagIcon={Sparkles} id: "starter", badge: "Starter", badgeIcon: Zap,
title="Simple, transparent pricing" price: "$19/mo", subtitle: "Perfect for individuals", buttons: [
description="Choose the plan that works best for you. All plans include a 14-day free trial." { text: "Get Started", onClick: () => console.log("Starter clicked") }
animationType="opacity" ],
textboxLayout="default" features: [
useInvertedBackground={false} "Up to 5 projects", "Basic analytics", "24/7 email support", "API access"
plans={[ ]
{ },
id: "starter", {
badge: "Starter", id: "pro", badge: "Pro", badgeIcon: Rocket,
badgeIcon: Zap, price: "$49/mo", subtitle: "For growing teams", buttons: [
price: "$19/mo", { text: "Get Started", onClick: () => console.log("Pro clicked") }
subtitle: "Perfect for individuals", ],
buttons: [ features: [
{ text: "Get Started", onClick: () => console.log("Starter clicked") }, "Unlimited projects", "Advanced analytics", "Priority support", "Custom integrations", "Team collaboration"
], ]
features: [ },
"Up to 5 projects", {
"Basic analytics", id: "enterprise", badge: "Enterprise", badgeIcon: Crown,
"24/7 email support", price: "$99/mo", subtitle: "For large organizations", buttons: [
"API access", { text: "Contact Sales", onClick: () => console.log("Enterprise clicked") }
], ],
}, features: [
{ "Everything in Pro", "Dedicated account manager", "Custom SLA", "On-premise deployment", "Advanced security"
id: "pro", ]
badge: "Pro", }
badgeIcon: Rocket, ]}
price: "$49/mo", />
subtitle: "For growing teams", </div>
buttons: [ <div id="contact" data-section="contact">
{ text: "Get Started", onClick: () => console.log("Pro clicked") }, <ContactCenter
], tag="Contact"
features: [ tagIcon={Mail}
"Unlimited projects", title="Ready to get started?"
"Advanced analytics", description="Join thousands of developers building better products with our platform."
"Priority support", background={{ variant: "animated-grid" }}
"Custom integrations", useInvertedBackground={false}
"Team collaboration", inputPlaceholder="Enter your email"
], buttonText="Get Early Access"
}, onSubmit={(email) => console.log("Email submitted:", email)}
{ />
id: "enterprise", </div>
badge: "Enterprise",
badgeIcon: Crown,
price: "$99/mo",
subtitle: "For large organizations",
buttons: [
{ text: "Contact Sales", onClick: () => console.log("Enterprise clicked") },
],
features: [
"Everything in Pro",
"Dedicated account manager",
"Custom SLA",
"On-premise deployment",
"Advanced security",
],
},
]}
/>
<ContactCenter
tag="Contact"
tagIcon={Mail}
title="Ready to get started?"
description="Join thousands of developers building better products with our platform."
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Get Early Access"
onSubmit={(email) => console.log("Email submitted:", email)}
/>
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[
{ {
title: "Product", title: "Product", items: [
items: [
{ label: "Features", href: "#features" }, { label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" }, { label: "Pricing", href: "#pricing" },
{ label: "Integrations", href: "#" }, { label: "Integrations", href: "#" },
{ label: "Changelog", href: "#" }, { label: "Changelog", href: "#" }
], ]
}, },
{ {
title: "Company", title: "Company", items: [
items: [ { label: "Our Principles", href: "/saas-development" },
{ label: "About", href: "#about" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" }, { label: "Contact", href: "#contact" }
], ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Documentation", href: "#" }, { label: "Documentation", href: "#" },
{ label: "Help Center", href: "#" }, { label: "Help Center", href: "#" },
{ label: "Community", href: "#" }, { label: "Community", href: "#" },
{ label: "Status", href: "#" }, { label: "Status", href: "#" }
], ]
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy", href: "#" }, { label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }, { label: "Terms", href: "#" },
{ label: "Security", href: "#" }, { label: "Security", href: "#" }
], ]
}, }
]} ]}
copyrightText="2024 SaasApp. All rights reserved." copyrightText="2024 SaasApp. All rights reserved."
/> />