Start, base site, 4 pages

This commit is contained in:
Georgiy Syralev
2025-09-14 22:50:43 +03:00
commit 56292a0b10
1188 changed files with 61806 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';
export default function Index() {
return (
<div>
<Navbar />
<main className="p-10">
<h1 className="text-4xl font-bold">Welcome to ospab.host</h1>
<p className="mt-4 text-lg">Your VPS hosting control panel</p>
</main>
<Footer />
</div>
);
}