Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d2125fbd9a | |||
| 3ecaf78f9d | |||
| 26018e6803 | |||
| 67a3672a83 | |||
| d0ec75e320 | |||
| d54b18477e |
@@ -1,59 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "MOVA - Electric Shaker", description: "Performance Redefined. The Electric Shaker—engineered for athletes."};
|
||||||
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"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
|||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
title="Performance Redefined"
|
title="Performance Redefined"
|
||||||
description="The Electric Shaker—engineered for athletes who demand speed, consistency, and zero compromises. Mix perfectly. Every. Single. Time."
|
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}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -62,7 +62,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get Your Shaker", href: "#product" },
|
{ text: "Get Your Shaker Now", href: "#product" },
|
||||||
{ text: "Learn More", href: "#features" }
|
{ text: "Learn More", href: "#features" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user