Merge version_1 into main #1
@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Link from "next/link";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||
import FeatureCardTwelve as FeatureCardTwelveAlt from "@/components/sections/feature/FeatureCardTwelve";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
@@ -19,8 +18,7 @@ const ServicesPage = () => {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Pricing", href: "/pricing" },
|
||||
{ label: "Dashboard", href: "/dashboard" },
|
||||
@@ -28,8 +26,7 @@ const ServicesPage = () => {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
@@ -37,8 +34,7 @@ const ServicesPage = () => {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{ label: "Help Center", href: "#" },
|
||||
{ label: "Status Page", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
@@ -80,42 +76,18 @@ const ServicesPage = () => {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "development",
|
||||
label: "Development",
|
||||
title: "Custom Software Development",
|
||||
items: [
|
||||
"Full-stack web applications",
|
||||
"Mobile app development",
|
||||
"AI/ML integration",
|
||||
"API development and integration",
|
||||
"Cloud-native architecture",
|
||||
],
|
||||
id: "development", label: "Development", title: "Custom Software Development", items: [
|
||||
"Full-stack web applications", "Mobile app development", "AI/ML integration", "API development and integration", "Cloud-native architecture"],
|
||||
buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "consulting",
|
||||
label: "Consulting",
|
||||
title: "IT Strategy & Architecture",
|
||||
items: [
|
||||
"Digital transformation",
|
||||
"Cloud migration planning",
|
||||
"System architecture design",
|
||||
"Technology stack selection",
|
||||
"Performance optimization",
|
||||
],
|
||||
id: "consulting", label: "Consulting", title: "IT Strategy & Architecture", items: [
|
||||
"Digital transformation", "Cloud migration planning", "System architecture design", "Technology stack selection", "Performance optimization"],
|
||||
buttons: [{ text: "Get Consultation", href: "/contact" }],
|
||||
},
|
||||
{
|
||||
id: "support",
|
||||
label: "Support",
|
||||
title: "24/7 Technical Support",
|
||||
items: [
|
||||
"Round-the-clock monitoring",
|
||||
"Rapid incident response",
|
||||
"Proactive maintenance",
|
||||
"System optimization",
|
||||
"Dedicated support team",
|
||||
],
|
||||
id: "support", label: "Support", title: "24/7 Technical Support", items: [
|
||||
"Round-the-clock monitoring", "Rapid incident response", "Proactive maintenance", "System optimization", "Dedicated support team"],
|
||||
buttons: [{ text: "Contact Support", href: "/contact" }],
|
||||
},
|
||||
]}
|
||||
@@ -123,7 +95,7 @@ const ServicesPage = () => {
|
||||
</div>
|
||||
|
||||
<div id="specialized-services" data-section="specialized-services">
|
||||
<FeatureCardTwelveAlt
|
||||
<FeatureCardTwelve
|
||||
title="Specialized IT Solutions"
|
||||
description="Advanced services for specific technology needs and enterprise requirements."
|
||||
animationType="slide-up"
|
||||
@@ -131,42 +103,18 @@ const ServicesPage = () => {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "cloud-migration",
|
||||
label: "Cloud",
|
||||
title: "Cloud Migration Services",
|
||||
items: [
|
||||
"AWS & Google Cloud deployment",
|
||||
"Multi-cloud strategy",
|
||||
"Serverless architecture setup",
|
||||
"Database migration",
|
||||
"Cost optimization analysis",
|
||||
],
|
||||
id: "cloud-migration", label: "Cloud", title: "Cloud Migration Services", items: [
|
||||
"AWS & Google Cloud deployment", "Multi-cloud strategy", "Serverless architecture setup", "Database migration", "Cost optimization analysis"],
|
||||
buttons: [{ text: "Get Started", href: "/contact" }],
|
||||
},
|
||||
{
|
||||
id: "security",
|
||||
label: "Security",
|
||||
title: "Enterprise Security",
|
||||
items: [
|
||||
"Security audits & compliance",
|
||||
"Encryption & data protection",
|
||||
"Access control management",
|
||||
"Incident response planning",
|
||||
"Compliance certification (ISO 27001)",
|
||||
],
|
||||
id: "security", label: "Security", title: "Enterprise Security", items: [
|
||||
"Security audits & compliance", "Encryption & data protection", "Access control management", "Incident response planning", "Compliance certification (ISO 27001)"],
|
||||
buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "devops",
|
||||
label: "DevOps",
|
||||
title: "DevOps & Automation",
|
||||
items: [
|
||||
"CI/CD pipeline setup",
|
||||
"Container orchestration",
|
||||
"Infrastructure as Code",
|
||||
"Monitoring & alerting",
|
||||
"Performance optimization",
|
||||
],
|
||||
id: "devops", label: "DevOps", title: "DevOps & Automation", items: [
|
||||
"CI/CD pipeline setup", "Container orchestration", "Infrastructure as Code", "Monitoring & alerting", "Performance optimization"],
|
||||
buttons: [{ text: "Get Started", href: "/contact" }],
|
||||
},
|
||||
]}
|
||||
@@ -174,7 +122,7 @@ const ServicesPage = () => {
|
||||
</div>
|
||||
|
||||
<div id="service-details" data-section="service-details">
|
||||
<FeatureCardTwelveAlt
|
||||
<FeatureCardTwelve
|
||||
title="Why Choose Our Services"
|
||||
description="Industry expertise, proven methodologies, and dedicated support for your success."
|
||||
animationType="slide-up"
|
||||
@@ -182,40 +130,16 @@ const ServicesPage = () => {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "expertise",
|
||||
label: "Expert",
|
||||
title: "Deep Industry Expertise",
|
||||
items: [
|
||||
"12+ years of IT experience",
|
||||
"50+ certified engineers",
|
||||
"Fortune 500 client partnerships",
|
||||
"Proven track record",
|
||||
"Continuous learning culture",
|
||||
],
|
||||
id: "expertise", label: "Expert", title: "Deep Industry Expertise", items: [
|
||||
"12+ years of IT experience", "50+ certified engineers", "Fortune 500 client partnerships", "Proven track record", "Continuous learning culture"],
|
||||
},
|
||||
{
|
||||
id: "technology",
|
||||
label: "Tech",
|
||||
title: "Cutting-Edge Technology",
|
||||
items: [
|
||||
"Latest AWS & GCP services",
|
||||
"AI/ML capabilities",
|
||||
"Kubernetes orchestration",
|
||||
"Advanced analytics tools",
|
||||
"Enterprise-grade security",
|
||||
],
|
||||
id: "technology", label: "Tech", title: "Cutting-Edge Technology", items: [
|
||||
"Latest AWS & GCP services", "AI/ML capabilities", "Kubernetes orchestration", "Advanced analytics tools", "Enterprise-grade security"],
|
||||
},
|
||||
{
|
||||
id: "support-quality",
|
||||
label: "Support",
|
||||
title: "24/7 Premium Support",
|
||||
items: [
|
||||
"Sub-hour response times",
|
||||
"Dedicated account managers",
|
||||
"SLA guarantees (99.9% uptime)",
|
||||
"Proactive monitoring",
|
||||
"Continuous optimization",
|
||||
],
|
||||
id: "support-quality", label: "Support", title: "24/7 Premium Support", items: [
|
||||
"Sub-hour response times", "Dedicated account managers", "SLA guarantees (99.9% uptime)", "Proactive monitoring", "Continuous optimization"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user