implemented primary button component
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user