feat: Updated marketing site

This commit is contained in:
2026-07-28 12:46:28 +01:00
parent febe48a974
commit f10e61cde4
39 changed files with 599 additions and 1050 deletions
+13 -17
View File
@@ -3,23 +3,19 @@ import "./globals.css";
import { Providers } from "@/components/Providers";
export const metadata: Metadata = {
title: "Vantage",
description: "Self-hosted SSH key management",
title: "Vantage",
description: "Self-hosted SSH key management",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
// data-theme is what site/ and adminsite/ switch on. This app is locked to
// dark, so the attribute is fixed rather than toggleable — it is here so
// the three apps declare their ground the same way.
<html lang="en" className="dark" data-theme="dark">
<body className="bg-background font-sans text-text-primary">
<Providers>{children}</Providers>
</body>
</html>
);
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
// data-theme is what site/ and adminsite/ switch on. This app is locked to
// dark, so the attribute is fixed rather than toggleable it is here so
// the three apps declare their ground the same way.
<html lang="en" className="dark" data-theme="dark">
<body className="bg-background font-sans text-text-primary">
<Providers>{children}</Providers>
</body>
</html>
);
}