Files
gitlab-instance-0a899031_do…/app/apps/page.tsx
2026-04-02 07:38:11 -05:00

19 lines
758 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { AppsExplorer } from "@/components/apps-explorer";
import { getApps } from "@/services/apps.service";
export default async function AppsPage() {
const apps = await getApps();
return (
<div className="space-y-5 py-6 md:space-y-6 md:py-8">
<section className="panel">
<p className="text-xs uppercase tracking-[0.25em] text-cyan-200/80">Download Center</p>
<h1 className="mt-2 text-2xl font-bold md:text-3xl"></h1>
<p className="mt-2 max-w-2xl text-sm text-slate-300 md:text-base">
</p>
</section>
<AppsExplorer apps={apps} />
</div>
);
}