Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b999ced81 | |||
| b4de241b10 | |||
| daa7c522f8 | |||
| b40fda6fba | |||
| 6b2f91b267 | |||
| 69351f5dc6 | |||
| 5b791da610 | |||
| 918f7a5323 | |||
| 2900c99c3b |
@@ -63,7 +63,7 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigate", items: [
|
title: "Navigate", items: [
|
||||||
{ label: "Home", href: "#" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "#services" },
|
||||||
{ label: "Products", href: "#products" },
|
{ label: "Products", href: "#products" },
|
||||||
{ label: "Results", href: "#results" }
|
{ label: "Results", href: "#results" }
|
||||||
@@ -71,7 +71,7 @@ export default function BlogPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Resources", items: [
|
title: "Resources", items: [
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Blog", href: "/blog" },
|
||||||
{ label: "FAQ", href: "#faq" },
|
{ label: "FAQ", href: "#faq" },
|
||||||
{ label: "Community", href: "#" },
|
{ label: "Community", href: "#" },
|
||||||
{ label: "Support", href: "#contact" }
|
{ label: "Support", href: "#contact" }
|
||||||
|
|||||||
@@ -1,39 +1,19 @@
|
|||||||
import type { Metadata } from "next";
|
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 = {
|
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"],
|
title: "Maxximize - Transform Your Appearance", description: "Science-backed personal optimization for men. Master skincare, fitness, style, and grooming."
|
||||||
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"]
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
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>
|
||||||
<body
|
{children}
|
||||||
className={`${plusJakartaSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1401,7 +1381,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
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";
|
import React, { useState } from "react";
|
||||||
|
|
||||||
const TestimonialCardFlipped = ({ testimonial, onFlip }: { testimonial: any; onFlip: (id: string) => void }) => {
|
const TestimonialCardFlipped = ({ testimonial, onFlip }: { testimonial: any; onFlip: (id: string) => void }) => {
|
||||||
@@ -161,19 +161,35 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<div className="relative">
|
||||||
logoText="MAXXIMIZE"
|
<HeroLogoBillboard
|
||||||
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."
|
logoText="MAXXIMIZE"
|
||||||
buttons={[
|
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."
|
||||||
{ text: "Begin Your Transformation", href: "#contact" },
|
buttons={[
|
||||||
{ text: "Explore Services", href: "#services" }
|
{ 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"
|
background={{ variant: "sparkles-gradient" }}
|
||||||
imageAlt="Confident transformation showcase"
|
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"
|
||||||
mediaAnimation="slide-up"
|
imageAlt="Confident transformation showcase"
|
||||||
frameStyle="card"
|
mediaAnimation="slide-up"
|
||||||
/>
|
frameStyle="card"
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Glassy card overlay - positioned in front of hero image */}
|
||||||
|
<div className="absolute bottom-0 md:bottom-8 right-6 md:right-12 w-72 md:w-80 z-20">
|
||||||
|
<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>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
|
|||||||
@@ -108,8 +108,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
|
{"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":"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":"#"}]}
|
{"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."
|
bottomLeftText="© 2025 Maxximize. All rights reserved."
|
||||||
@@ -163,8 +163,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
|
{"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":"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":"#"}]}
|
{"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."
|
bottomLeftText="© 2025 Maxximize. All rights reserved."
|
||||||
@@ -242,8 +242,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
|
{"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":"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":"#"}]}
|
{"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."
|
bottomLeftText="© 2025 Maxximize. All rights reserved."
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ function ShopPageContent() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
|
{"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":"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":"#"}]}
|
{"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."
|
bottomLeftText="© 2025 Maxximize. All rights reserved."
|
||||||
@@ -105,8 +105,8 @@ function ShopPageContent() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Products","href":"#products"},{"label":"Results","href":"#results"}]},
|
{"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":"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":"#"}]}
|
{"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."
|
bottomLeftText="© 2025 Maxximize. All rights reserved."
|
||||||
|
|||||||
Reference in New Issue
Block a user