diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index a34edcc..57e5b99 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -62,11 +62,11 @@ export default function BlogPage() {
diff --git a/src/app/contacts/page.tsx b/src/app/contacts/page.tsx
index 35f7ada..93674b9 100644
--- a/src/app/contacts/page.tsx
+++ b/src/app/contacts/page.tsx
@@ -57,11 +57,11 @@ export default function ContactsPage() {
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8b13789..7eee1e3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1 +1,1388 @@
+import type { Metadata } from "next";
+import { Inter } from "next/font/google";
+import "./globals.css";
+import "../styles/variables.css";
+const inter = Inter({ subsets: ["latin"] });
+
+export const metadata: Metadata = {
+ title: "Find Mouse", description: "Discover the wholesome goodness of our farm-fresh milk and handcrafted cheeses, made with passion and tradition."};
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+
+
{children}
+