skalara-web/app/page.tsx
2023-07-30 01:04:24 -04:00

16 lines
511 B
TypeScript

import Navbar from "@/components/navbar";
export default async function Index() {
return (
<div className="w-full flex flex-col items-center">
<Navbar />
<div className="flex flex-col gap-14 max-w-4xl px-3 py-16 lg:py-24 text-foreground">
<div className="flex flex-col items-center mb-4 lg:mb-12">
<p className="text-3xl lg:text-4xl !leading-tight mx-auto max-w-xl text-center my-12">
Skalara Homepage
</p>
</div>
</div>
</div>
);
}