diff --git a/src/app/page.tsx b/src/app/page.tsx index 14c4aea..b06e161 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" }, diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..3a1680a --- /dev/null +++ b/src/app/services/page.tsx @@ -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 ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file