Update src/app/services/page.tsx

This commit is contained in:
2026-03-03 17:34:59 +00:00
parent b979a8468a
commit a0adc5eb27

View File

@@ -5,7 +5,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import FooterCard from "@/components/sections/footer/FooterCard";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Zap, Server, Wifi, Lock, CheckCircle, Users, Brain, Phone, Mail } from "lucide-react";
import { Zap, Server, Wifi, Lock, CheckCircle, Users, Brain, Phone, Mail, Shield } from "lucide-react";
export default function ServicesPage() {
return (
@@ -42,10 +42,7 @@ export default function ServicesPage() {
description="Datadiorama offers a comprehensive range of IT services designed to meet the unique needs of businesses in Potsdam. From network infrastructure to system administration, we have the expertise to support your organization's growth."
features={[
{
title: "Network Installation & Optimization",
description: "Professional network setup and continuous optimization for maximum performance and reliability.",
bentoComponent: "orbiting-icons",
centerIcon: Shield,
title: "Network Installation & Optimization", description: "Professional network setup and continuous optimization for maximum performance and reliability.", bentoComponent: "orbiting-icons", centerIcon: Shield,
items: [
{ icon: Zap, ring: 1 },
{ icon: Server, ring: 2 },
@@ -53,23 +50,14 @@ export default function ServicesPage() {
],
},
{
title: "System Updates & Maintenance",
description: "Regular updates and backups for PC and Apple systems ensuring data security and system stability.",
bentoComponent: "timeline",
heading: "Maintenance Schedule",
subheading: "Regular system care",
items: [
title: "System Updates & Maintenance", description: "Regular updates and backups for PC and Apple systems ensuring data security and system stability.", bentoComponent: "timeline", heading: "Maintenance Schedule", subheading: "Regular system care", items: [
{ label: "Monthly Backups", detail: "Automated backup systems" },
{ label: "Quarterly Updates", detail: "System and security patches" },
{ label: "Annual Audit", detail: "Comprehensive system review" },
],
completedLabel: "Up to date",
},
completedLabel: "Up to date"},
{
title: "Email & Communication Systems",
description: "Professional email administration and telephone system management for seamless business communication.",
bentoComponent: "icon-info-cards",
items: [
title: "Email & Communication Systems", description: "Professional email administration and telephone system management for seamless business communication.", bentoComponent: "icon-info-cards", items: [
{ icon: Mail, label: "Email Administration", value: "Enterprise Grade" },
{ icon: Phone, label: "Phone Systems", value: "Integrated" },
{ icon: Users, label: "User Management", value: "Full Support" },
@@ -89,27 +77,17 @@ export default function ServicesPage() {
description="Beyond our core services, Datadiorama provides specialized solutions to address specific business challenges and infrastructure needs."
features={[
{
title: "IT Administration",
description: "Comprehensive IT administration services with expert team trained through continuous professional development.",
bentoComponent: "3d-stack-cards",
items: [
title: "IT Administration", description: "Comprehensive IT administration services with expert team trained through continuous professional development.", bentoComponent: "3d-stack-cards", items: [
{ icon: Lock, title: "Security", subtitle: "Protection", detail: "Advanced security protocols" },
{ icon: CheckCircle, title: "Reliability", subtitle: "Uptime", detail: "99.9% availability guaranteed" },
{ icon: Users, title: "Support", subtitle: "Expert Team", detail: "Continuously trained professionals" },
],
},
{
title: "Hardware Solutions",
description: "Complete hardware inventory management and supply solutions for your office IT infrastructure.",
bentoComponent: "globe",
},
title: "Hardware Solutions", description: "Complete hardware inventory management and supply solutions for your office IT infrastructure.", bentoComponent: "globe"},
{
title: "Professional IT Consulting",
description: "Expert IT consulting to optimize your business infrastructure and technology investments.",
bentoComponent: "marquee",
centerIcon: Brain,
variant: "text",
texts: ["Strategic Planning", "Technology Assessment", "Cost Optimization", "System Architecture"],
title: "Professional IT Consulting", description: "Expert IT consulting to optimize your business infrastructure and technology investments.", bentoComponent: "marquee", centerIcon: Brain,
variant: "text", texts: ["Strategic Planning", "Technology Assessment", "Cost Optimization", "System Architecture"],
},
]}
animationType="slide-up"
@@ -145,23 +123,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
// Icon component for Shield (used in orbiting-icons)
function Shield() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
</svg>
);
}