Merge version_4 into main #16

Merged
bender merged 2 commits from version_4 into main 2026-04-08 20:00:01 +00:00
2 changed files with 56 additions and 0 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" },

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

@@ -0,0 +1,55 @@
"use client";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import { Zap, Shield, Rocket, Target, Sparkles } from "lucide-react";
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"},
{
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"},
{
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"}
];
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>
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="SaasApp"
button={{ text: "Get Started", href: "#" }}
/>
<div className="pt-24">
<FeatureBento
features={services}
animationType="slide-up"
tag="Our Expertise"
title="Services we offer"
description="Comprehensive solutions to help you scale effectively."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBaseReveal
logoText="SaaSify"
columns={[]}
copyrightText="2024 SaasApp. All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);
}