import Hero from "../app/components/Hero" import FeatureCard from "../app/components/FeatureCard" import { Mail, Lock, Code, } from "lucide-react" export default function Home() { const features = [ { title: "Email", description: "4GB of free email storage and a synced calendar.", link: "https://pontusmail.org/", icon: Mail, }, { title: "Password Manager", description: "Securely store and manage your passwords across devices with Vaultwarden.", link: "https://vaultwarden.p0ntus.com/", icon: Lock, }, { title: "Repo Hosting", description: "Host your code repositories on our Gitea instance.", link: "https://git.pontusmail.org/", icon: Code, }, ] return (

Services

{features.map((feature, index) => ( ))}
) }