install packages

This commit is contained in:
2026-04-13 12:13:05 +03:30
parent a29002b429
commit 774a205a9c
12 changed files with 119 additions and 3 deletions

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

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

19
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: "Offline App",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}

9
src/app/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function Home() {
return (
<main style={{ padding: 40 }}>
<h1>Offline Next.js Template 🚀</h1>
<p>This project was generated completely offline.</p>
</main>
);
}