update iframe rules home 3

This commit is contained in:
Alma 2025-04-09 16:34:46 +02:00
parent 1fd21f73df
commit 95833925ed

View File

@ -4,6 +4,7 @@ import { Podcast } from "@/components/podcast";
import { CalendarWidget } from "@/components/calendar-widget"; import { CalendarWidget } from "@/components/calendar-widget";
import { News } from "@/components/news"; import { News } from "@/components/news";
import { Todo } from "@/components/todo"; import { Todo } from "@/components/todo";
import { BackgroundSwitcher } from "@/components/background-switcher";
export const metadata = { export const metadata = {
title: "Enkun - Dashboard", title: "Enkun - Dashboard",
@ -11,7 +12,9 @@ export const metadata = {
export default function DashboardPage() { export default function DashboardPage() {
return ( return (
<div className="container mx-auto px-4 pt-12 pb-4"> <BackgroundSwitcher>
<main className="w-full h-screen">
<div className="w-full h-full px-4 pt-12 pb-4">
<div className='grid grid-cols-12 gap-4'> <div className='grid grid-cols-12 gap-4'>
<div className='col-span-3'> <div className='col-span-3'>
<QuoteCard /> <QuoteCard />
@ -29,5 +32,7 @@ export default function DashboardPage() {
</div> </div>
</div> </div>
</div> </div>
</main>
</BackgroundSwitcher>
); );
} }