From 3ecaf78f9dfdaef5f93f477ddb7cc625a1008ce7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:03:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba534cf..14b8c47 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MOVA Electric Shaker | Performance Mixing Tool", description: "The Electric Shaker by MOVA—engineered for athletes. One-button mixing, premium build quality, gym-ready design. Experience performance redefined.", keywords: "electric shaker, protein mixer, gym equipment, fitness tool, performance gear, athletic accessory, protein shake mixer", metadataBase: new URL("https://mova-shop.com"), - alternates: { - canonical: "https://mova-shop.com" - }, - robots: { - index: true, - follow: true - }, - openGraph: { - title: "MOVA Electric Shaker | Performance Redefined", description: "The ultimate mixing tool for athletes. Fast, reliable, powerful. Get your Electric Shaker today.", type: "website", siteName: "MOVA", url: "https://mova-shop.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/concentrated-fitness-lady-sitting-outdoors-drinking-water_171337-8195.jpg", alt: "MOVA Electric Shaker" - } - ] - }, - twitter: { - card: "summary_large_image", title: "MOVA Electric Shaker", description: "Performance mixing for serious athletes.", images: ["http://img.b2bpic.net/free-photo/concentrated-fitness-lady-sitting-outdoors-drinking-water_171337-8195.jpg"] - } -}; + title: "MOVA - Electric Shaker", description: "Performance Redefined. The Electric Shaker—engineered for athletes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +