mirror of
https://github.com/Techtonic-Fault/homepage.git
synced 2026-01-23 05:26:30 +00:00
Initial commit
This commit is contained in:
7
data/blog.ts
Normal file
7
data/blog.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { parsePostDate } from "@/lib/blog";
|
||||
import { allPosts } from "content-collections";
|
||||
|
||||
const blogPosts = allPosts.sort((a, b) => {
|
||||
return parsePostDate(b.date).getTime() - parsePostDate(a.date).getTime();
|
||||
});
|
||||
export default blogPosts;
|
||||
6
data/portfolio.ts
Normal file
6
data/portfolio.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { allPortfolios } from "content-collections";
|
||||
|
||||
const projects = allPortfolios.sort((a, b) => {
|
||||
return b.year - a.year;
|
||||
});
|
||||
export default projects;
|
||||
34
data/services.tsx
Normal file
34
data/services.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
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.",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user