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}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4e745e5..e3b12b5 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -42,7 +42,7 @@ export default function LandingPage() {