|
Last change
on this file since a98dbb7 was 44a42b8, checked in by Andrej <asumanovski@…>, 5 months ago |
|
Set up tailwind
|
-
Property mode
set to
100644
|
|
File size:
606 bytes
|
| Rev | Line | |
|---|
| [44a42b8] | 1 | export default function LandingPage() {
|
|---|
| 2 | return (
|
|---|
| 3 | <div className="min-h-screen flex items-center justify-center p-8">
|
|---|
| 4 | <div className="w-full max-w-md rounded-xl border p-6 text-center">
|
|---|
| 5 | <h1 className="text-2xl font-semibold">Landing Page</h1>
|
|---|
| 6 | <p className="mt-2 text-sm opacity-80">
|
|---|
| 7 | Tailwind is wired up — replace this with real content.
|
|---|
| 8 | </p>
|
|---|
| 9 | <div className="mt-6 grid grid-cols-2 gap-3">
|
|---|
| 10 | <div className="h-10 rounded-md bg-black/10" />
|
|---|
| 11 | <div className="h-10 rounded-md bg-black/10" />
|
|---|
| 12 | </div>
|
|---|
| 13 | </div>
|
|---|
| 14 | </div>
|
|---|
| 15 | );
|
|---|
| 16 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.