Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function RootLayout({
jetbrainsMono.variable
)}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col dark">{children}</body>
</html>
)
}
19 changes: 12 additions & 7 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ import { Input } from "@/components/ui/input"

export default function Home() {
return (
<main className="flex flex-1 flex-col items-center justify-center gap-8 px-4">
<h1 className="text-4xl font-bold tracking-tight">BekarsSpace</h1>
<form className="flex w-full max-w-sm gap-2">
<Input type="email" placeholder="your@email.com" required />
<Button type="submit">Subscribe</Button>
</form>
</main>
<>
<div className="absolute inset-0 bg-[url('/logo.svg')] bg-cover bg-center brightness-20 blur-lg -z-100" />
<main className="flex flex-1 flex-col items-center justify-center gap-8 px-4">
<h1 className="text-4xl font-bold tracking-tight">
BekarsSpace
</h1>
<form className="flex w-full max-w-sm gap-2">
<Input type="email" placeholder="your@email.com" required />
<Button type="submit">Subscribe</Button>
</form>
</main>
</>
)
}
Loading