Start, base site, 4 pages
This commit is contained in:
16
ospabhost/src/pages/index.tsx
Normal file
16
ospabhost/src/pages/index.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user