This commit is contained in:
2025-12-16 21:23:28 +03:00
commit cb0b14799e
15 changed files with 1109 additions and 0 deletions

1
web/src/app/globals.css Normal file
View File

@@ -0,0 +1 @@
@import "tailwindcss";

19
web/src/app/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "archive.local",
description: "self-hosted archive service",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="h-full">
<body className="h-full flex flex-col">{children}</body>
</html>
);
}

7
web/src/app/page.tsx Normal file
View File

@@ -0,0 +1,7 @@
export default function Home() {
return (
<div>
<h1>archive.local</h1>
</div>
);
}