mirror of
https://github.com/dyzulk/trustlab.git
synced 2026-01-26 13:32:06 +07:00
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
import { Metadata } from "next";
|
|
import HomeClient from "./HomeClient";
|
|
|
|
export const metadata: Metadata = {
|
|
description: "Self-hosted SSL and Certificate Management Lab. Issue and manage SSL/TLS certificates and API keys with ease.",
|
|
};
|
|
|
|
export default function Home() {
|
|
return <HomeClient />;
|
|
}
|