6 Commits

Author SHA1 Message Date
26861ff339 Merge version_3 into main
Merge version_3 into main
2026-03-08 12:28:34 +00:00
9c646ee96e Update src/app/page.tsx 2026-03-08 12:28:30 +00:00
432cd6ee40 Merge version_2 into main
Merge version_2 into main
2026-03-08 12:26:27 +00:00
13241dfdf9 Update src/app/page.tsx 2026-03-08 12:26:23 +00:00
2d775e00cf Update src/app/layout.tsx 2026-03-08 12:26:23 +00:00
7b7ce568de Merge version_1 into main
Merge version_1 into main
2026-03-08 12:23:34 +00:00
2 changed files with 14 additions and 38 deletions

View File

@@ -1,51 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Geze Supplement | Premium Creatine for Peak Performance", description: "Unlock your fitness potential with Geze Supplement's scientifically-formulated creatine. Premium monohydrate, third-party tested, trusted by 50K+ athletes worldwide.", keywords: "creatine, creatine monohydrate, supplements, fitness, sports nutrition, muscle strength, athletic performance", openGraph: {
title: "Geze Supplement | Premium Creatine", description: "Transform your performance with Geze Supplement's pure creatine monohydrate. Trusted by athletes globally.", type: "website", siteName: "Geze Supplement", images: [
{
url: "http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760044.jpg", alt: "Geze Supplement Creatine Product"},
],
},
twitter: {
card: "summary_large_image", title: "Geze Supplement | Premium Creatine", description: "Achieve peak performance with our scientifically-backed creatine supplement.", images: ["http://img.b2bpic.net/free-photo/brain-booster-pills-container-still-life_23-2150760044.jpg"],
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
background={{ variant: "plain" }}
buttons={[
{ text: "Explore Products", href: "#products" },
{ text: "Shop Creatine Now", href: "#products" },
{ text: "Learn More", href: "#features" },
]}
carouselItems={[
@@ -212,7 +212,7 @@ export default function LandingPage() {
animationType="entrance-slide"
buttons={[
{ text: "Shop Creatine", href: "#products" },
{ text: "Contact Support", href: "https://example.com/contact" },
{ text: "Claim Your Discount", href: "#products" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}