diff --git a/src/app/[locale]/(dashboard)/news/page.tsx b/src/app/[locale]/(dashboard)/news/page.tsx index c079b62c..95abc49d 100644 --- a/src/app/[locale]/(dashboard)/news/page.tsx +++ b/src/app/[locale]/(dashboard)/news/page.tsx @@ -4,6 +4,7 @@ import { getTranslations, unstable_setRequestLocale } from 'next-intl/server'; import { cx } from '@/lib/utils'; import { NewsCard } from '@/components/news/NewsCard'; +import { Separator } from '@/components/ui/Separator'; export async function generateMetadata({ params: { locale }, @@ -53,7 +54,7 @@ export default function News({ return ( <>

{t('title')}

-
+
{mockData.slice(0, 4).map((data, index) => ( ))}
+ ); } diff --git a/src/app/[locale]/layout.tsx b/src/app/[locale]/layout.tsx index 077754dd..7cc20b11 100644 --- a/src/app/[locale]/layout.tsx +++ b/src/app/[locale]/layout.tsx @@ -84,7 +84,7 @@ export default function Localelayout({ children, params: { locale } }: Props) { > -
+
{children}
diff --git a/src/components/layout/Main.tsx b/src/components/layout/Main.tsx index 468551fe..138d57d3 100644 --- a/src/components/layout/Main.tsx +++ b/src/components/layout/Main.tsx @@ -10,7 +10,12 @@ type Props = { function Main({ children, mainClassName, className }: Props) { return ( -
+
- + {title} + {title} diff --git a/tailwind.config.ts b/tailwind.config.ts index fbbac025..44fc8ce1 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -58,16 +58,7 @@ export default { '3-auto': 'repeat(3, auto)', '2-auto': 'repeat(2, auto)', }, - minHeight: { - '104': '26rem', - '112': '28rem', - '120': '30rem', - '128': '32rem', - '144': '36rem', - '160': '40rem', - '192': '48rem', - }, - maxHeight: { + height: { '104': '26rem', '112': '28rem', '120': '30rem',