diff --git a/app/[locale]/apps/components/Container.tsx b/app/[locale]/apps/components/Container.tsx index d3aea51..bc9a36e 100644 --- a/app/[locale]/apps/components/Container.tsx +++ b/app/[locale]/apps/components/Container.tsx @@ -1,15 +1,22 @@ 'use client' import { Locales } from '@/locales/locales' -import { Heading } from '@/app/components/typography/Heading' import { useI18n } from '@/locales/client' +import { HeadingNavigation } from '@/app/components/typography' +import { Typography } from '@/app/components' export const AppsContainer = () => { const t = useI18n() return ( -
- {t(Locales.APPS)} +
+
+ {t(Locales.APPS)} + + Enjoy thousand of the latest ethereum apps, games, music, movies, TV, + books, magazines & more. Anytime, anywhere, across your devices. + +
) } diff --git a/app/[locale]/apps/layout.tsx b/app/[locale]/apps/layout.tsx index 620c1cc..0942737 100644 --- a/app/[locale]/apps/layout.tsx +++ b/app/[locale]/apps/layout.tsx @@ -23,7 +23,7 @@ export default function Layout({ children }: LayoutProps) { ] return ( - + {children} ) diff --git a/app/[locale]/components/MaintenanceMode.tsx b/app/[locale]/components/MaintenanceMode.tsx index d980432..8fd72e6 100644 --- a/app/[locale]/components/MaintenanceMode.tsx +++ b/app/[locale]/components/MaintenanceMode.tsx @@ -7,7 +7,7 @@ export const MaintenanceMode = () => {
- +
) diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 6b2c779..13b93dd 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -26,8 +26,8 @@ export default function BaseLayout({ children, params }: BaseLayoutProps) { className={classNames( 'flex min-h-screen flex-col', 'h-screen overflow-x-hidden text-sm font-medium', - 'bg-stone-100 text-stone-600/70', - 'dark:bg-third-100 dark:text-gray-400' + 'bg-stone-100 text-stone-900/70', + 'dark:bg-third-100 dark:text-cyan-50' )} > {process.env.NEXT_PUBLIC_MAINTENANCE_MODE === 'true' ? ( @@ -35,7 +35,7 @@ export default function BaseLayout({ children, params }: BaseLayoutProps) { ) : (
-
{children}
+
{children}