diff --git a/components/services.tsx b/components/services.tsx new file mode 100644 index 0000000..38d1db4 --- /dev/null +++ b/components/services.tsx @@ -0,0 +1,73 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { Monitor, Utensils, Rocket, Layout, Settings, RefreshCw } from "lucide-react"; + +const services = [ + { + title: "Website Design", + description: "Custom, modern designs tailored to your brand identity and business goals.", + icon: Monitor, + }, + { + title: "Business Websites", + description: "Professional corporate sites that build trust and convert visitors into clients.", + icon: Rocket, + }, + { + title: "Restaurant & Café", + description: "Specialized layouts with menu integration and online reservation capabilities.", + icon: Utensils, + }, + { + title: "Landing Pages", + description: "High-converting single pages designed specifically for your marketing campaigns.", + icon: Layout, + }, + { + title: "Maintenance", + description: "Ongoing support, security updates, and performance optimization for your site.", + icon: Settings, + }, + { + title: "Website Redesign", + description: "Give your outdated website a modern makeover to improve UX and SEO.", + icon: RefreshCw, + }, +]; + +export function Services() { + return ( +
+ {/* Subtle Grid Pattern */} +
+
+
+ + +
+ Our Services + + Everything you need to establish a powerful online presence and grow your business. + +
+
+ {services.map((service, index) => ( + + +
+ +
+ {service.title} + + {service.description} + +
+
+ ))} +
+
+
+ ); +}