23 Commits

Author SHA1 Message Date
f6fbe6a477 Update src/app/services/page.tsx 2026-04-08 20:00:54 +00:00
47c34f8b20 Update src/app/services/page.tsx 2026-04-08 20:00:24 +00:00
613d39acd6 Add src/app/services/page.tsx 2026-04-08 19:59:58 +00:00
7ed90b2887 Update src/app/page.tsx 2026-04-08 19:59:58 +00:00
0f514687b2 Merge version_3 into main
Merge version_3 into main
2026-04-08 19:56:23 +00:00
a37e7e4465 Update src/app/page.tsx 2026-04-08 19:56:20 +00:00
202da80aa2 Merge version_2 into main
Merge version_2 into main
2026-04-08 19:55:39 +00:00
bcf04a411c Update theme colors 2026-04-08 19:55:36 +00:00
9617b2d0be Merge version_2 into main
Merge version_2 into main
2026-04-08 19:53:35 +00:00
173a534d8c Update src/app/styles/variables.css 2026-04-08 19:53:32 +00:00
2a0df70f2d Update src/app/page.tsx 2026-04-08 19:53:32 +00:00
b74b9ce4ec Merge version_1 into main
Merge version_1 into main
2026-04-08 19:48:16 +00:00
e4394f521d Merge version_1 into main
Merge version_1 into main
2026-04-08 19:47:52 +00:00
fa7bbd9786 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:47:23 +00:00
85815492a0 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:47:01 +00:00
df5c3b4996 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:46:41 +00:00
08f8701048 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:46:12 +00:00
dc010187c3 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:44:24 +00:00
faa647e54b Merge version_1 into main
Merge version_1 into main
2026-04-08 19:43:52 +00:00
0ee417f2ea Merge version_1 into main
Merge version_1 into main
2026-04-08 19:43:29 +00:00
be67ccefe7 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:42:41 +00:00
8bf2860089 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:42:02 +00:00
829f6997b7 Merge version_1 into main
Merge version_1 into main
2026-04-08 19:41:50 +00:00
2 changed files with 181 additions and 160 deletions

View File

@@ -15,6 +15,7 @@ import { Zap, Shield, Rocket, Target, Sparkles, Crown, Mail, Users, Layers, Code
export default function SaasTemplatePage() {
const navItems = [
{ name: "Features", id: "features" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
@@ -29,28 +30,18 @@ export default function SaasTemplatePage() {
const features: FeatureCard[] = [
{
bentoComponent: "globe",
title: "Global Reach",
description: "Connect with users worldwide through our distributed infrastructure",
},
bentoComponent: "globe", title: "Global Reach", description: "Connect with users worldwide through our distributed infrastructure"},
{
bentoComponent: "marquee",
variant: "text",
centerIcon: Zap,
bentoComponent: "marquee", variant: "text", centerIcon: Zap,
texts: ["Fast", "Reliable", "Secure", "Scalable", "Modern"],
title: "Built for Speed",
description: "Lightning fast performance with optimized delivery",
},
title: "Built for Speed", description: "Lightning fast performance with optimized delivery"},
{
bentoComponent: "3d-stack-cards",
items: [
bentoComponent: "3d-stack-cards", items: [
{ icon: Shield, title: "Security", subtitle: "Enterprise-grade", detail: "Bank-level encryption" },
{ icon: Rocket, title: "Performance", subtitle: "99.9% uptime", detail: "Always available" },
{ icon: Target, title: "Accuracy", subtitle: "100% reliable", detail: "Data you can trust" },
],
title: "Built for Scale",
description: "Deploy to any region with automatic failover support",
}
title: "Built for Scale", description: "Deploy to any region with automatic failover support"}
];
return (
@@ -61,70 +52,66 @@ export default function SaasTemplatePage() {
brandName="SaasApp"
button={{ text: "Get Started", href: "#" }}
/>
<HeroCentered
background={{ variant: "rotated-rays-animated-grid" }}
avatars={avatars}
avatarText="Trusted by 1000+ users"
title="Build Modern Web Experiences-Out of the world california apple"
description="Create stunning, responsive websites with our comprehensive component library designed"
buttons={[
{
text: "Get Started",
onClick: () => console.log("Get Started clicked"),
},
{
text: "Learn More",
onClick: () => console.log("Learn More clicked"),
},
]}
marqueeItems={[
{ type: "text-icon", text: "Lightning Fast", icon: Zap },
{ type: "text-icon", text: "Enterprise Security", icon: Shield },
{ type: "text-icon", text: "99.9% Uptime", icon: Rocket },
{ type: "text-icon", text: "Precision Targeting", icon: Target },
{ type: "text-icon", text: "AI Powered", icon: Sparkles },
]}
/>
<FeatureBento
features={features}
animationType="none"
tag="Features"
title="Powerful Features"
description="Everything you need to build and scale your product"
textboxLayout="default"
useInvertedBackground={false}
/>
<FeatureBorderGlow
tag="Why Choose Us"
tagIcon={Users}
title="Built by developers, for developers"
description="We understand the challenges of modern software development because we face them every day."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
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: Shield,
title: "Enterprise Security",
description: "Bank-level encryption and compliance with industry standards",
},
{
icon: Rocket,
title: "Lightning Fast",
description: "Optimized for performance with sub-second response times",
},
]}
/>
<div id="hero">
<HeroCentered
background={{ variant: "rotated-rays-animated-grid" }}
avatars={avatars}
avatarText="Trusted by 1000+ users"
title="Build Modern Web Experiences"
description="Create stunning, responsive websites with our comprehensive component library designed"
buttons={[
{
text: "Get Started", onClick: () => console.log("Get Started clicked"),
},
{
text: "Learn More", onClick: () => console.log("Learn More clicked"),
},
]}
marqueeItems={[
{ type: "text-icon", text: "Lightning Fast", icon: Zap },
{ type: "text-icon", text: "Enterprise Security", icon: Shield },
{ type: "text-icon", text: "99.9% Uptime", icon: Rocket },
{ type: "text-icon", text: "Precision Targeting", icon: Target },
{ type: "text-icon", text: "AI Powered", icon: Sparkles },
]}
/>
</div>
<div id="features">
<FeatureBento
features={features}
animationType="none"
tag="Features"
title="Powerful Features"
description="Everything you need to build and scale your product"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="about">
<FeatureBorderGlow
tag="Why Choose Us"
tagIcon={Users}
title="Built by developers, for developers"
description="We understand the challenges of modern software development because we face them every day."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
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: Shield,
title: "Enterprise Security", description: "Bank-level encryption and compliance with industry standards"},
{
icon: Rocket,
title: "Lightning Fast", description: "Optimized for performance with sub-second response times"},
]}
/>
</div>
<TestimonialCardFifteen
testimonial="This platform has completely transformed how we build products. The developer experience is unmatched."
rating={5}
@@ -134,84 +121,61 @@ export default function SaasTemplatePage() {
avatarsAnimation="slide-up"
useInvertedBackground={false}
/>
<PricingCardEight
tag="Pricing"
tagIcon={Sparkles}
title="Simple, transparent pricing"
description="Choose the plan that works best for you. All plans include a 14-day free trial."
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "starter",
badge: "Starter",
badgeIcon: Zap,
price: "$19/mo",
subtitle: "Perfect for individuals",
buttons: [
{ text: "Get Started", onClick: () => console.log("Starter clicked") },
],
features: [
"Up to 5 projects",
"Basic analytics",
"24/7 email support",
"API access",
],
},
{
id: "pro",
badge: "Pro",
badgeIcon: Rocket,
price: "$49/mo",
subtitle: "For growing teams",
buttons: [
{ text: "Get Started", onClick: () => console.log("Pro clicked") },
],
features: [
"Unlimited projects",
"Advanced analytics",
"Priority support",
"Custom integrations",
"Team collaboration",
],
},
{
id: "enterprise",
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)}
/>
<div id="pricing">
<PricingCardEight
tag="Pricing"
tagIcon={Sparkles}
title="Simple, transparent pricing"
description="Choose the plan that works best for you. All plans include a 14-day free trial."
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "starter", badge: "Starter", badgeIcon: Zap,
price: "$19/mo", subtitle: "Perfect for individuals", buttons: [
{ text: "Get Started", onClick: () => console.log("Starter clicked") },
],
features: [
"Up to 5 projects", "Basic analytics", "24/7 email support", "API access"],
},
{
id: "pro", badge: "Pro", badgeIcon: Rocket,
price: "$49/mo", subtitle: "For growing teams", buttons: [
{ text: "Get Started", onClick: () => console.log("Pro clicked") },
],
features: [
"Unlimited projects", "Advanced analytics", "Priority support", "Custom integrations", "Team collaboration"],
},
{
id: "enterprise", 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"],
},
]}
/>
</div>
<div id="contact">
<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)}
/>
</div>
<FooterBaseReveal
logoText="SaaSify"
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Integrations", href: "#" },
@@ -219,8 +183,7 @@ export default function SaasTemplatePage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -228,8 +191,7 @@ export default function SaasTemplatePage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "Help Center", href: "#" },
{ label: "Community", href: "#" },
@@ -237,8 +199,7 @@ export default function SaasTemplatePage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
{ label: "Security", href: "#" },
@@ -250,4 +211,4 @@ export default function SaasTemplatePage() {
</ReactLenis>
</ThemeProvider>
);
}
}

60
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import FooterBase from "@/components/sections/footer/FooterBase";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
export default function ServicesPage() {
const navItems = [
{ name: "Features", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const services = [
{
title: "Custom Software Development", description: "Tailored solutions designed to solve your specific business challenges with scalable architecture.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/saas/image1.avif", imageAlt: "Custom Software Development"
},
{
title: "Cloud Infrastructure", description: "Expertise in managing and optimizing cloud resources for maximum uptime and security.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/saas/image2.avif", imageAlt: "Cloud Infrastructure"
},
{
title: "AI/ML Integration", description: "Incorporate cutting-edge machine learning models into your existing workflows for intelligent insights.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/saas/image3.avif", imageAlt: "AI/ML Integration"
}
];
return (
<ThemeProvider defaultButtonVariant="hover-bubble" defaultTextAnimation="entrance-slide" borderRadius="pill" contentWidth="medium" sizing="medium" background="none" cardStyle="gradient-bordered" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" headingFontWeight="medium">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="SaasApp"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div className="pt-24">
<FeatureCardEight
features={services}
tag="Our Expertise"
title="Services we offer"
description="Comprehensive solutions to help you scale effectively."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="SaaSify"
columns={[]}
copyrightText="2024 SaasApp. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}