implemented primary button component

This commit is contained in:
2026-04-18 10:42:55 +03:30
parent b59a58f8f9
commit b312df8151
8 changed files with 100 additions and 8 deletions

View File

@@ -45,7 +45,7 @@ export default async function RootLayout({
/>
</head>
<body className="bg-primary">
<body className="bg-background">
<NextIntlClientProvider locale={locale} messages={messages}>
<ClientAppProvider>{children}</ClientAppProvider>
</NextIntlClientProvider>

View File

@@ -1,13 +1,13 @@
import ThemeToggle from "@/components/UI/ThemeToggle";
import ComponentsConteiner from "@/components/ComponentsConteiner";
import { useTranslations } from "next-intl";
export default function Home() {
const t = useTranslations("Home");
return (
<main>
<ThemeToggle />
<h1>{t("title")}</h1>
<p>This project was generated completely offline.</p>
<ComponentsConteiner />
</main>
);
}