Merge version_6 into main

Merge version_6 into main
This commit was merged in pull request #11.
This commit is contained in:
2026-02-27 10:27:58 +00:00
5 changed files with 49 additions and 55 deletions

View File

@@ -63,7 +63,7 @@ export default function BlogPage() {
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "#" },
{ label: "Home", href: "/" },
{ label: "Services", href: "#services" },
{ label: "Products", href: "#products" },
{ label: "Results", href: "#results" }
@@ -71,7 +71,7 @@ export default function BlogPage() {
},
{
title: "Resources", items: [
{ label: "Blog", href: "#" },
{ label: "Blog", href: "/blog" },
{ label: "FAQ", href: "#faq" },
{ label: "Community", href: "#" },
{ label: "Support", href: "#contact" }

View File

@@ -1,39 +1,18 @@
import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({
variable: "--font-plus-jakarta-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Maxximize - Complete Looksmaxxing & Personal Transformation", description: "Science-backed personal optimization for men. Transform your skin, build muscle, master style, and perfect grooming. 500+ successful transformations. Start your journey today.", keywords: ["looksmaxxing", "personal transformation", "skincare", "fitness coaching", "personal styling", "male grooming", "confidence building"],
openGraph: {
title: "Maxximize - Transform Your Appearance, Elevate Your Confidence", description: "Complete looksmaxxing program combining skincare, fitness, style, and grooming expertise.", type: "website", siteName: "Maxximize", images: [{
url: "http://img.b2bpic.net/free-photo/slim-sexy-blonde-young-sportswoman-with-athletic-body-pumped-press-poses-gym-looking-camera-black-sportswear-full-length-portrait_7502-8729.jpg", alt: "Maxximize transformation showcase"
}]
},
twitter: {
card: "summary_large_image", title: "Maxximize - Personal Transformation Made Simple", description: "The complete looksmaxxing system for men who want to level up.", images: ["http://img.b2bpic.net/free-photo/slim-sexy-blonde-young-sportswoman-with-athletic-body-pumped-press-poses-gym-looking-camera-black-sportswear-full-length-portrait_7502-8729.jpg"]
}
};
title: "Maxximize - Transform Your Appearance", description: "Science-backed personal optimization for men. Master skincare, fitness, style, and grooming."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${plusJakartaSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1401,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -11,7 +11,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Award, CheckCircle, Sparkles, Package, Linkedin, Twitter, Instagram, Mail } from "lucide-react";
import { Award, CheckCircle, Sparkles, Package, Linkedin, Twitter, Instagram, Mail, Users } from "lucide-react";
import React, { useState } from "react";
const TestimonialCardFlipped = ({ testimonial, onFlip }: { testimonial: any; onFlip: (id: string) => void }) => {
@@ -161,19 +161,35 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="MAXXIMIZE"
description="Transform your appearance, elevate your confidence, dominate your potential. We combine science-backed optimization across skincare, fitness, style, and grooming to unlock your best self."
buttons={[
{ text: "Begin Your Transformation", href: "#contact" },
{ text: "Explore Services", href: "#services" }
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/slim-sexy-blonde-young-sportswoman-with-athletic-body-pumped-press-poses-gym-looking-camera-black-sportswear-full-length-portrait_7502-8729.jpg"
imageAlt="Confident transformation showcase"
mediaAnimation="slide-up"
frameStyle="card"
/>
<div className="relative">
<HeroLogoBillboard
logoText="MAXXIMIZE"
description="Transform your appearance, elevate your confidence, dominate your potential. We combine science-backed optimization across skincare, fitness, style, and grooming to unlock your best self."
buttons={[
{ text: "Begin Your Transformation", href: "#contact" },
{ text: "Explore Services", href: "#services" }
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/slim-sexy-blonde-young-sportswoman-with-athletic-body-pumped-press-poses-gym-looking-camera-black-sportswear-full-length-portrait_7502-8729.jpg"
imageAlt="Confident transformation showcase"
mediaAnimation="slide-up"
frameStyle="card"
/>
{/* Glassy card overlay - positioned half off and half on the image */}
<div className="absolute bottom-12 md:bottom-20 right-6 md:right-12 w-72 md:w-80 transform translate-y-1/2">
<div className="backdrop-blur-md bg-white/10 border border-white/20 rounded-2xl p-6 md:p-8 shadow-2xl">
<div className="flex items-center gap-3 mb-3">
<div className="text-white">
<Users size={24} />
</div>
<h3 className="text-white font-semibold text-lg">Trusted by</h3>
</div>
<p className="text-white/90 text-2xl md:text-3xl font-bold">200+</p>
<p className="text-white/80 text-sm">Successful Clients</p>
</div>
</div>
</div>
</div>
<div id="about" data-section="about">

View File

@@ -108,8 +108,8 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"#"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Navigate","items":[{"label":"Home","href":"/"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"/blog"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact Us","href":"#contact"},{"label":"Disclaimer","href":"#"}]}
]}
bottomLeftText="© 2025 Maxximize. All rights reserved."
@@ -163,8 +163,8 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"#"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Navigate","items":[{"label":"Home","href":"/"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"/blog"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact Us","href":"#contact"},{"label":"Disclaimer","href":"#"}]}
]}
bottomLeftText="© 2025 Maxximize. All rights reserved."
@@ -242,8 +242,8 @@ function ProductPageContent({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"#"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Navigate","items":[{"label":"Home","href":"/"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"/blog"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact Us","href":"#contact"},{"label":"Disclaimer","href":"#"}]}
]}
bottomLeftText="© 2025 Maxximize. All rights reserved."

View File

@@ -51,8 +51,8 @@ function ShopPageContent() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"#"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Navigate","items":[{"label":"Home","href":"/"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"/blog"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact Us","href":"#contact"},{"label":"Disclaimer","href":"#"}]}
]}
bottomLeftText="© 2025 Maxximize. All rights reserved."
@@ -105,8 +105,8 @@ function ShopPageContent() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"#"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Navigate","items":[{"label":"Home","href":"/"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
{"title":"Resources","items":[{"label":"Blog","href":"/blog"},{"label":"FAQ","href":"#faq"},{"label":"Community","href":"#"},{"label":"Support","href":"#contact"}]},
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact Us","href":"#contact"},{"label":"Disclaimer","href":"#"}]}
]}
bottomLeftText="© 2025 Maxximize. All rights reserved."