First commit

This commit is contained in:
dyzulk
2025-12-30 12:11:04 +07:00
commit 34dc111344
322 changed files with 31972 additions and 0 deletions

11
src/app/(public)/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Metadata } from "next";
import HomeClient from "./HomeClient";
export const metadata: Metadata = {
title: "Welcome to TrustLab",
description: "Advanced Certificate Authority and PKI Management System. Issue and manage SSL/TLS certificates and API keys with ease.",
};
export default function Home() {
return <HomeClient />;
}