From 653a7cf29586c594ad1a78a8b11c5a2319cd1737 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:54:20 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() { -- 2.49.1 From 1023d56148e6070fa1f1e39e6ee1b2e88362aba6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:54:20 +0000 Subject: [PATCH 2/5] Update src/app/contacts/page.tsx --- src/app/contacts/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() { -- 2.49.1 From 9d4215b9c124b8db26c0989bbb6c0b0fe53b294b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:54:21 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 1387 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1387 insertions(+) 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} +