diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 028c573..a34edcc 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -18,7 +18,7 @@ export default function BlogPage() {
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLargeSizeLargeTitles"
- background="aurora"
+ background="noise"
cardStyle="glass-depth"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
@@ -62,11 +62,11 @@ export default function BlogPage() {
@@ -74,4 +74,4 @@ export default function BlogPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contacts/page.tsx b/src/app/contacts/page.tsx
index 985cced..35f7ada 100644
--- a/src/app/contacts/page.tsx
+++ b/src/app/contacts/page.tsx
@@ -14,7 +14,7 @@ export default function ContactsPage() {
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLargeSizeLargeTitles"
- background="aurora"
+ background="noise"
cardStyle="glass-depth"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
@@ -57,15 +57,15 @@ export default function ContactsPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 752661c..8b13789 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1408 +1 @@
-import type { Metadata } from "next";
-import { Plus_Jakarta_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const plusJakartaSans = Plus_Jakarta_Sans({
- variable: "--font-plus-jakarta-sans", subsets: ["latin"],
-});
-
-export const metadata: Metadata = {
- title: "Find Mouse | Fresh Milk & Artisanal Cheese", description: "Discover farm-fresh milk and handcrafted artisanal cheeses from Find Mouse. Quality dairy products made with tradition and care.", keywords: ["milk", "cheese", "dairy", "artisanal", "farm fresh", "natural", "organic", "cheddar", "goat cheese", "yogurt", "butter"],
- openGraph: {
- title: "Find Mouse | Fresh Milk & Artisanal Cheese", description: "Discover farm-fresh milk and handcrafted artisanal cheeses from Find Mouse. Quality dairy products made with tradition and care.", url: "/", siteName: "Find Mouse", images: [
- {
- url: "https://img.b2bpic.net/free-photo/different-types-cheese-wooden-background-composition-delicatessen-concept-gourmet-cheeses_169016-4622.jpg", alt: "Find Mouse dairy products on a rustic table"},
- ],
- type: "website"},
- twitter: {
- card: "summary_large_image", title: "Find Mouse | Fresh Milk & Artisanal Cheese", description: "Discover farm-fresh milk and handcrafted artisanal cheeses from Find Mouse. Quality dairy products made with tradition and care.", images: ["https://img.b2bpic.net/free-photo/different-types-cheese-wooden-background-composition-delicatessen-concept-gourmet-cheeses_169016-4622.jpg"],
- },
-};
-
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
- return (
-
-
-
-
- {children}
-
-