Merge version_2 into main #5
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
||||
<HeroBillboardGallery
|
||||
title="Performance Redefined"
|
||||
description="The Electric Shaker—engineered for athletes who demand speed, consistency, and zero compromises. Mix perfectly. Every. Single. Time."
|
||||
tag="Electric Innovation"
|
||||
tag="Limited Stock Available"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
@@ -62,7 +62,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Your Shaker", href: "#product" },
|
||||
{ text: "Get Your Shaker Now", href: "#product" },
|
||||
{ text: "Learn More", href: "#features" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user