import { categoryLabels } from "@/lib/mock-data"; import { AppGrid, HeroSection, StatsPanel, UnlockSection } from "@/components/sections"; import { ScrollReveal } from "@/components/scroll-reveal"; import { getApps } from "@/services/apps.service"; import Link from "next/link"; export default async function Home() { const appResources = await getApps(); const latest = [...appResources].sort((a, b) => b.updatedAt.localeCompare(a.updatedAt)); const featured = appResources.filter((a) => a.featured).slice(0, 6); return (
{app.name}
{app.subtitle}