diff --git a/src/app/giveaway/page.tsx b/src/app/giveaway/page.tsx index efe0ff1..010a118 100644 --- a/src/app/giveaway/page.tsx +++ b/src/app/giveaway/page.tsx @@ -3,6 +3,7 @@ import ReactMarkdown from 'react-markdown'; import remarkGfm from 'remark-gfm'; import { GiveawayTile } from '@/components/tiles/giveaway-tile'; +import { Tile } from '@/components/tiles/tile'; import { getIndexData } from '@/models/get-index-data'; export default async function Giveaway() { @@ -15,9 +16,11 @@ export default async function Giveaway() {

Nyereményjáték

-
- -
+ + + + + ); } diff --git a/src/app/globals.css b/src/app/globals.css index 6d94868..6ce5e8f 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -35,6 +35,14 @@ h2 { @apply underline; } +.markdown h2 { + @apply my-2; +} + +.markdown h1 { + @apply mb-4; +} + .planet { @apply absolute hidden xl:block select-none pointer-events-none; } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 037a166..1b18a43 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -21,7 +21,7 @@ export default function RootLayout({ children }: { children: React.ReactNode }) return ( -
+
{children}