mirror of
https://github.com/Techtonic-Fault/homepage.git
synced 2026-01-23 13:29:52 +00:00
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { Code, Database, Globe, Laptop, Server, Settings } from "lucide-react"
|
|
|
|
export const services = [
|
|
{
|
|
icon: <Globe className="h-6 w-6 text-primary-900" />,
|
|
title: "Sviluppo web",
|
|
description: "Siti web e applicazioni web sviluppati con tecnologie moderne e seguendo le best practices.",
|
|
},
|
|
{
|
|
icon: <Laptop className="h-6 w-6 text-primary-900" />,
|
|
title: "Sviluppo mobile",
|
|
description: "Sviluppo di app native e/o cross-platform per Android e iOS.",
|
|
},
|
|
{
|
|
icon: <Database className="h-6 w-6 text-primary-900" />,
|
|
title: "Database",
|
|
description: "Design, ottimizzazione e gestione di database.",
|
|
},
|
|
{
|
|
icon: <Server className="h-6 w-6 text-primary-900" />,
|
|
title: "Servizi cloud",
|
|
description: "Impostazione, migrazione e gestione di infrastrutture nel cloud.",
|
|
},
|
|
{
|
|
icon: <Code className="h-6 w-6 text-primary-900" />,
|
|
title: "Software personalizzato",
|
|
description: "Soluzioni software adatte alle vostre specifiche esigenze di business.",
|
|
},
|
|
{
|
|
icon: <Settings className="h-6 w-6 text-primary-900" />,
|
|
title: "Mantenimento e supporto",
|
|
description: "Mantenimento continuativo, aggiornamenti e supporto tecnico per i vostri sistemi.",
|
|
},
|
|
]; |