Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b999ced81 | |||
| b4de241b10 | |||
| daa7c522f8 | |||
| b40fda6fba | |||
| 6b2f91b267 | |||
| 69351f5dc6 | |||
| 5b791da610 | |||
| 918f7a5323 | |||
| 2900c99c3b | |||
| 64310b3a2b | |||
| c44945ec2f | |||
| 783aecadf2 | |||
| 31c34e4cd6 | |||
| ae44bf8516 | |||
| a00908574f | |||
| 18d5bc53a1 | |||
| 30639a4e2b | |||
| c6f7fd18df | |||
| 2e2468414e | |||
| e9edbcd087 | |||
| 645d10ef46 | |||
| 16bdb506f9 | |||
| 3ee5e43be8 | |||
| 11eef3417a | |||
| 980b4f55eb | |||
| edf82c5a1c | |||
| 1db2ada6ba | |||
| d9c6207e52 | |||
| 9e29c6c73a | |||
| 496987fa5a | |||
| b2bf93cba8 | |||
| 0dfd3b72f0 | |||
| 772448bc20 | |||
| f182a0bb85 | |||
| d8c03e7db4 | |||
| 58141395dc | |||
| f7d3e4f545 | |||
| f03b56d897 |
@@ -31,7 +31,7 @@ export default function BlogPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Results", id: "results" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Start Transformation", href: "#contact" }}
|
||||
@@ -63,15 +63,15 @@ export default function BlogPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#" },
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Products", href: "#products" },
|
||||
{ label: "Results", href: "#results" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Community", href: "#" },
|
||||
{ label: "Support", href: "#contact" }
|
||||
|
||||
@@ -1,39 +1,19 @@
|
||||
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 +1381,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
239
src/app/page.tsx
239
src/app/page.tsx
@@ -6,14 +6,132 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
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 } 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 }) => {
|
||||
const [isFlipped, setIsFlipped] = useState(false);
|
||||
|
||||
const handleMouseEnter = () => {
|
||||
setIsFlipped(true);
|
||||
};
|
||||
|
||||
const handleMouseLeave = () => {
|
||||
setIsFlipped(false);
|
||||
};
|
||||
|
||||
return (
|
||||
<div
|
||||
onMouseEnter={handleMouseEnter}
|
||||
onMouseLeave={handleMouseLeave}
|
||||
className="h-full"
|
||||
>
|
||||
<div
|
||||
className="relative w-full h-full transition-transform duration-500 preserve-3d"
|
||||
style={{
|
||||
transformStyle: 'preserve-3d',
|
||||
transform: isFlipped ? 'rotateY(180deg)' : 'rotateY(0deg)',
|
||||
}}
|
||||
>
|
||||
{/* Front side */}
|
||||
<div
|
||||
className="absolute w-full h-full bg-card rounded-theme p-6 flex flex-col justify-between border border-accent/20"
|
||||
style={{
|
||||
backfaceVisibility: 'hidden',
|
||||
WebkitBackfaceVisibility: 'hidden',
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<p className="text-foreground mb-6 text-sm leading-relaxed">{testimonial.testimonial}</p>
|
||||
</div>
|
||||
<div className="flex items-center gap-3">
|
||||
{testimonial.imageSrc && (
|
||||
<img
|
||||
src={testimonial.imageSrc}
|
||||
alt={testimonial.imageAlt || testimonial.name}
|
||||
className="w-12 h-12 rounded-full object-cover"
|
||||
/>
|
||||
)}
|
||||
<div>
|
||||
<p className="font-semibold text-foreground text-sm">{testimonial.name}</p>
|
||||
<p className="text-accent text-xs">{testimonial.role}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Back side */}
|
||||
<div
|
||||
className="absolute w-full h-full bg-primary-cta rounded-theme p-6 flex flex-col items-center justify-center gap-6 border border-accent/20"
|
||||
style={{
|
||||
backfaceVisibility: 'hidden',
|
||||
WebkitBackfaceVisibility: 'hidden',
|
||||
transform: 'rotateY(180deg)',
|
||||
}}
|
||||
>
|
||||
<p className="text-primary-cta-text font-semibold text-center text-sm">Connect with {testimonial.name}</p>
|
||||
<div className="flex gap-4">
|
||||
<a
|
||||
href="#"
|
||||
className="text-primary-cta-text hover:opacity-80 transition-opacity"
|
||||
title="LinkedIn"
|
||||
>
|
||||
<Linkedin size={24} />
|
||||
</a>
|
||||
<a
|
||||
href="#"
|
||||
className="text-primary-cta-text hover:opacity-80 transition-opacity"
|
||||
title="Twitter"
|
||||
>
|
||||
<Twitter size={24} />
|
||||
</a>
|
||||
<a
|
||||
href="#"
|
||||
className="text-primary-cta-text hover:opacity-80 transition-opacity"
|
||||
title="Instagram"
|
||||
>
|
||||
<Instagram size={24} />
|
||||
</a>
|
||||
<a
|
||||
href="#"
|
||||
className="text-primary-cta-text hover:opacity-80 transition-opacity"
|
||||
title="Email"
|
||||
>
|
||||
<Mail size={24} />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default function LandingPage() {
|
||||
const testimonialData = [
|
||||
{
|
||||
id: "1", name: "Marcus T.", role: "Software Engineer", testimonial: "I went from feeling invisible to commanding attention in any room. The skincare protocol cleared my skin, the training program built muscle, and the style guidance transformed how people perceive me. Best investment I've made.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Marcus after transformation"
|
||||
},
|
||||
{
|
||||
id: "2", name: "James K.", role: "Sales Executive", testimonial: "Within 8 weeks, my confidence skyrocketed. Clients and colleagues noticed the change immediately. The comprehensive approach meant I didn't have to figure it out alone—every pillar was covered professionally.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "James after transformation"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Derek M.", role: "Entrepreneur", testimonial: "This isn't just about looking better; it's about becoming the best version of yourself. The accountability and expert guidance made all the difference. I recommend Maxximize to every serious man.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=1", imageAlt: "Derek after transformation"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Ryan P.", role: "Marketing Manager", testimonial: "The transformation exceeded my expectations. Clear skin, visible muscle, sharp style, and grooming expertise—I feel like a completely new person. This program delivers.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=2", imageAlt: "Ryan after transformation"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Alex V.", role: "Fitness Professional", testimonial: "Even as someone in the fitness industry, I learned so much about the holistic approach to personal optimization. The skincare and style components I was missing have made a huge difference.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Alex after transformation"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Chris N.", role: "Consultant", testimonial: "The most comprehensive looksmaxxing program available. Not just gym hacks or skincare tips—this is a complete system. Worth every penny and then some.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=3", imageAlt: "Chris after transformation"
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -33,7 +151,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Results", id: "results" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
@@ -43,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 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 id="about" data-section="about">
|
||||
@@ -130,33 +264,22 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardEight
|
||||
title="Investment Tiers"
|
||||
description="Choose the program that fits your goals and commitment level."
|
||||
plans={[
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
title="Maxximize Kits"
|
||||
description="Complete personal optimization kits designed to accelerate your transformation journey."
|
||||
products={[
|
||||
{
|
||||
id: "starter", badge: "Popular Entry", badgeIcon: Sparkles,
|
||||
price: "$297", subtitle: "Perfect for first-timers", buttons: [{ text: "Get Started", href: "#contact" }],
|
||||
features: [
|
||||
"4-week personalized skincare plan", "Beginner fitness program design", "Basic style consultation", "Email support", "Access to private community"
|
||||
]
|
||||
id: "lite", name: "Looks Lite", price: "$149", variant: "Essential Essentials 5 Items", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/tmp/generate-an-image-of-a-looksmaxxing-prod-1772150424151-77a31ef6.png", imageAlt: "Looks Lite Kit", isFavorited: false
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Most Popular", badgeIcon: CheckCircle,
|
||||
price: "$597", subtitle: "Complete transformation package", buttons: [{ text: "Transform Now", href: "#contact" }],
|
||||
features: [
|
||||
"12-week advanced skincare protocol", "Custom hypertrophy training program", "Full wardrobe consultation & curation", "Professional grooming guidance", "Weekly check-ins & adjustments", "Priority email & chat support"
|
||||
]
|
||||
id: "mid", name: "Looks Mid", price: "$299", variant: "Complete System 12 Items", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/tmp/generate-an-image-of-a-looksmaxxing-prod-1772150203310-33014b9b.png", imageAlt: "Looks Mid Kit", isFavorited: false
|
||||
},
|
||||
{
|
||||
id: "elite", badge: "Premium Transformation", badgeIcon: Award,
|
||||
price: "$1,297", subtitle: "1-on-1 elite coaching", buttons: [{ text: "Become Elite", href: "#contact" }],
|
||||
features: [
|
||||
"Unlimited 12-week personalized coaching", "1-on-1 weekly video consultations", "Advanced dermatology consultations", "Customized nutrition plans", "Personal shopping assistance", "24/7 priority support", "Lifetime community access", "Results guarantee"
|
||||
]
|
||||
id: "max", name: "Looks MAX", price: "$499", variant: "Premium Bundle 20 Items", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_34YrpHTNyoPHUh85bjA10KHfDge/tmp/generate-an-image-of-a-looksmaxxing-prod-1772150463609-8d918126.png", imageAlt: "Looks MAX Kit", isFavorited: false
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -164,33 +287,21 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="Client Success Stories"
|
||||
description="Real transformations from real men who took control of their image."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marcus T.", role: "Software Engineer", testimonial: "I went from feeling invisible to commanding attention in any room. The skincare protocol cleared my skin, the training program built muscle, and the style guidance transformed how people perceive me. Best investment I've made.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Marcus after transformation"
|
||||
},
|
||||
{
|
||||
id: "2", name: "James K.", role: "Sales Executive", testimonial: "Within 8 weeks, my confidence skyrocketed. Clients and colleagues noticed the change immediately. The comprehensive approach meant I didn't have to figure it out alone—every pillar was covered professionally.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "James after transformation"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Derek M.", role: "Entrepreneur", testimonial: "This isn't just about looking better; it's about becoming the best version of yourself. The accountability and expert guidance made all the difference. I recommend Maxximize to every serious man.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=1", imageAlt: "Derek after transformation"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Ryan P.", role: "Marketing Manager", testimonial: "The transformation exceeded my expectations. Clear skin, visible muscle, sharp style, and grooming expertise—I feel like a completely new person. This program delivers.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=2", imageAlt: "Ryan after transformation"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Alex V.", role: "Fitness Professional", testimonial: "Even as someone in the fitness industry, I learned so much about the holistic approach to personal optimization. The skincare and style components I was missing have made a huge difference.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Alex after transformation"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Chris N.", role: "Consultant", testimonial: "The most comprehensive looksmaxxing program available. Not just gym hacks or skincare tips—this is a complete system. Worth every penny and then some.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg?_wi=3", imageAlt: "Chris after transformation"
|
||||
}
|
||||
]}
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<div className="w-full py-20 px-6">
|
||||
<div className="w-full max-w-7xl mx-auto">
|
||||
<div className="text-center mb-12">
|
||||
<h2 className="text-4xl md:text-5xl font-semibold text-foreground mb-4">Client Success Stories</h2>
|
||||
<p className="text-foreground/70 text-lg">Real transformations from real men who took control of their image.</p>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 auto-rows-max">
|
||||
{testimonialData.map((testimonial) => (
|
||||
<div key={testimonial.id} className="h-80">
|
||||
<TestimonialCardFlipped testimonial={testimonial} onFlip={() => {}} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
@@ -247,7 +358,7 @@ export default function LandingPage() {
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Products", href: "#products" },
|
||||
{ label: "Results", href: "#results" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -96,9 +96,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Services","id":"services"},
|
||||
{"name":"Results","id":"results"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Products","id":"products"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -109,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":"Pricing","href":"#pricing"},{"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."
|
||||
@@ -144,9 +143,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Services","id":"services"},
|
||||
{"name":"Results","id":"results"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Products","id":"products"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -165,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":"Pricing","href":"#pricing"},{"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."
|
||||
@@ -199,9 +197,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Services","id":"services"},
|
||||
{"name":"Results","id":"results"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Products","id":"products"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
/>
|
||||
@@ -245,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":"Pricing","href":"#pricing"},{"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."
|
||||
|
||||
@@ -39,9 +39,8 @@ function ShopPageContent() {
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Services","id":"services"},
|
||||
{"name":"Results","id":"results"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Products","id":"products"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -52,8 +51,8 @@ function ShopPageContent() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"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."
|
||||
@@ -86,9 +85,8 @@ function ShopPageContent() {
|
||||
{"name":"Home","id":"/"},
|
||||
{"name":"Services","id":"services"},
|
||||
{"name":"Results","id":"results"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Contact","id":"contact"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
{"name":"Products","id":"products"},
|
||||
{"name":"Contact","id":"contact"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
/>
|
||||
@@ -107,8 +105,8 @@ function ShopPageContent() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{"title":"Navigate","items":[{"label":"Home","href":"#"},{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"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."
|
||||
|
||||
Reference in New Issue
Block a user