Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 18d5bc53a1 | |||
| 30639a4e2b | |||
| c6f7fd18df | |||
| 2e2468414e | |||
| e9edbcd087 | |||
| 645d10ef46 | |||
| 16bdb506f9 | |||
| 3ee5e43be8 | |||
| 11eef3417a | |||
| 980b4f55eb | |||
| edf82c5a1c | |||
| 1db2ada6ba | |||
| d9c6207e52 | |||
| 9e29c6c73a | |||
| 496987fa5a | |||
| b2bf93cba8 |
@@ -31,7 +31,6 @@ export default function BlogPage() {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Results", id: "results" },
|
{ name: "Results", id: "results" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
|
||||||
{ name: "Products", id: "products" },
|
{ name: "Products", id: "products" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -64,16 +63,15 @@ 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: "Pricing", href: "#pricing" },
|
|
||||||
{ label: "Products", href: "#products" },
|
{ label: "Products", href: "#products" },
|
||||||
{ label: "Results", href: "#results" }
|
{ label: "Results", href: "#results" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
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" }
|
||||||
|
|||||||
199
src/app/page.tsx
199
src/app/page.tsx
@@ -6,15 +6,24 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
|||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
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 } from "lucide-react";
|
import { Award, CheckCircle, Sparkles, Package } from "lucide-react";
|
||||||
|
import { useState } from "react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const [flipped, setFlipped] = useState<{ [key: string]: boolean }>({});
|
||||||
|
|
||||||
|
const toggleFlip = (id: string) => {
|
||||||
|
setFlipped(prev => ({
|
||||||
|
...prev,
|
||||||
|
[id]: !prev[id]
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-bubble"
|
defaultButtonVariant="hover-bubble"
|
||||||
@@ -34,7 +43,6 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Results", id: "results" },
|
{ name: "Results", id: "results" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
|
||||||
{ name: "Products", id: "products" },
|
{ name: "Products", id: "products" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -132,52 +140,19 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
|
||||||
<PricingCardEight
|
|
||||||
title="Investment Tiers"
|
|
||||||
description="Choose the program that fits your goals and commitment level."
|
|
||||||
plans={[
|
|
||||||
{
|
|
||||||
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: "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: "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"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Maxximize Kits"
|
title="Maxximize Kits"
|
||||||
description="Complete personal optimization kits designed to accelerate your transformation journey."
|
description="Complete personal optimization kits designed to accelerate your transformation journey."
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "lite", name: "Looks Lite", price: "$149", variant: "Essential Essentials 5 Items", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-bottle-skincare-product-white-background_90220-1639.jpg", imageAlt: "Looks Lite Kit", isFavorited: false
|
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: "mid", name: "Looks Mid", price: "$299", variant: "Complete System 12 Items", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cosmetics-arranged_23-2149351023.jpg", imageAlt: "Looks Mid Kit", isFavorited: false
|
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: "max", name: "Looks MAX", price: "$499", variant: "Premium Bundle 20 Items", imageSrc: "http://img.b2bpic.net/free-photo/spa-background-with-bottles-products_23-2148707810.jpg", imageAlt: "Looks MAX Kit", isFavorited: false
|
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"
|
gridVariant="three-columns-all-equal-width"
|
||||||
@@ -188,33 +163,126 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardTwo
|
<div className="w-content-width mx-auto py-20">
|
||||||
title="Client Success Stories"
|
<div className="text-center mb-16">
|
||||||
description="Real transformations from real men who took control of their image."
|
<h2 className="text-5xl font-semibold text-foreground mb-4">Client Success Stories</h2>
|
||||||
testimonials={[
|
<p className="text-xl text-foreground opacity-75">Real transformations from real men who took control of their image. Hover over cards to see their social media links.</p>
|
||||||
{
|
</div>
|
||||||
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"
|
|
||||||
},
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||||
{
|
{[
|
||||||
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: "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", socialLinks: [
|
||||||
{
|
{ platform: "Instagram", url: "https://instagram.com" },
|
||||||
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"
|
{ platform: "LinkedIn", url: "https://linkedin.com" }
|
||||||
},
|
]
|
||||||
{
|
},
|
||||||
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: "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", socialLinks: [
|
||||||
{
|
{ platform: "Twitter", url: "https://twitter.com" },
|
||||||
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"
|
{ platform: "LinkedIn", url: "https://linkedin.com" }
|
||||||
},
|
]
|
||||||
{
|
},
|
||||||
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"
|
{
|
||||||
}
|
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", socialLinks: [
|
||||||
]}
|
{ platform: "Instagram", url: "https://instagram.com" },
|
||||||
animationType="blur-reveal"
|
{ platform: "Twitter", url: "https://twitter.com" }
|
||||||
textboxLayout="default"
|
]
|
||||||
useInvertedBackground={false}
|
},
|
||||||
/>
|
{
|
||||||
|
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", socialLinks: [
|
||||||
|
{ platform: "LinkedIn", url: "https://linkedin.com" },
|
||||||
|
{ platform: "Instagram", url: "https://instagram.com" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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", socialLinks: [
|
||||||
|
{ platform: "Twitter", url: "https://twitter.com" },
|
||||||
|
{ platform: "LinkedIn", url: "https://linkedin.com" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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", socialLinks: [
|
||||||
|
{ platform: "Instagram", url: "https://instagram.com" },
|
||||||
|
{ platform: "LinkedIn", url: "https://linkedin.com" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
].map((testimonial) => (
|
||||||
|
<div
|
||||||
|
key={testimonial.id}
|
||||||
|
className="h-96 cursor-pointer perspective"
|
||||||
|
onClick={() => toggleFlip(testimonial.id)}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className="relative w-full h-full transition-transform duration-500 transform-gpu"
|
||||||
|
style={{
|
||||||
|
transformStyle: 'preserve-3d',
|
||||||
|
transform: flipped[testimonial.id] ? 'rotateY(180deg)' : 'rotateY(0deg)'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{/* Front of card */}
|
||||||
|
<div
|
||||||
|
className="absolute w-full h-full bg-card rounded-theme p-6 flex flex-col justify-between border border-accent/20 shadow-lg"
|
||||||
|
style={{
|
||||||
|
backfaceVisibility: 'hidden'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<div className="w-16 h-16 rounded-full overflow-hidden mb-4 mx-auto">
|
||||||
|
<img
|
||||||
|
src={testimonial.imageSrc}
|
||||||
|
alt={testimonial.imageAlt}
|
||||||
|
className="w-full h-full object-cover"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<h3 className="text-lg font-semibold text-foreground text-center mb-1">
|
||||||
|
{testimonial.name}
|
||||||
|
</h3>
|
||||||
|
<p className="text-sm text-foreground/75 text-center mb-4">
|
||||||
|
{testimonial.role}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<p className="text-foreground/90 text-sm leading-relaxed text-center flex-grow flex items-center">
|
||||||
|
"{testimonial.testimonial}"
|
||||||
|
</p>
|
||||||
|
<p className="text-xs text-accent text-center mt-4 opacity-75">
|
||||||
|
Click to see social links →
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Back of card */}
|
||||||
|
<div
|
||||||
|
className="absolute w-full h-full bg-gradient-to-br from-primary-cta/90 to-accent/90 rounded-theme p-6 flex flex-col justify-center items-center border border-accent shadow-lg"
|
||||||
|
style={{
|
||||||
|
backfaceVisibility: 'hidden',
|
||||||
|
transform: 'rotateY(180deg)'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<h3 className="text-lg font-semibold text-white mb-6 text-center">
|
||||||
|
Connect with {testimonial.name.split(' ')[0]}
|
||||||
|
</h3>
|
||||||
|
<div className="flex flex-col gap-3 w-full">
|
||||||
|
{testimonial.socialLinks.map((link) => (
|
||||||
|
<a
|
||||||
|
key={link.platform}
|
||||||
|
href={link.url}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="w-full py-2 px-4 bg-white/20 hover:bg-white/30 text-white rounded-lg text-center text-sm font-medium transition-colors duration-200"
|
||||||
|
>
|
||||||
|
{link.platform}
|
||||||
|
</a>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<p className="text-xs text-white/75 text-center mt-6">
|
||||||
|
Click to flip back ←
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
@@ -271,7 +339,6 @@ export default function LandingPage() {
|
|||||||
title: "Navigate", items: [
|
title: "Navigate", items: [
|
||||||
{ label: "Home", href: "#" },
|
{ label: "Home", href: "#" },
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "#services" },
|
||||||
{ label: "Pricing", href: "#pricing" },
|
|
||||||
{ label: "Products", href: "#products" },
|
{ label: "Products", href: "#products" },
|
||||||
{ label: "Results", href: "#results" }
|
{ label: "Results", href: "#results" }
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -96,7 +96,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"results"},
|
{"name":"Results","id":"results"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
|
||||||
{"name":"Products","id":"products"},
|
{"name":"Products","id":"products"},
|
||||||
{"name":"Contact","id":"contact"}
|
{"name":"Contact","id":"contact"}
|
||||||
]}
|
]}
|
||||||
@@ -109,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":"Pricing","href":"#pricing"},{"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."
|
||||||
@@ -144,7 +143,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"results"},
|
{"name":"Results","id":"results"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
|
||||||
{"name":"Products","id":"products"},
|
{"name":"Products","id":"products"},
|
||||||
{"name":"Contact","id":"contact"}
|
{"name":"Contact","id":"contact"}
|
||||||
]}
|
]}
|
||||||
@@ -165,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":"Pricing","href":"#pricing"},{"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."
|
||||||
@@ -199,7 +197,6 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"results"},
|
{"name":"Results","id":"results"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
|
||||||
{"name":"Products","id":"products"},
|
{"name":"Products","id":"products"},
|
||||||
{"name":"Contact","id":"contact"}
|
{"name":"Contact","id":"contact"}
|
||||||
]}
|
]}
|
||||||
@@ -245,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":"Pricing","href":"#pricing"},{"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."
|
||||||
|
|||||||
@@ -39,7 +39,6 @@ function ShopPageContent() {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"results"},
|
{"name":"Results","id":"results"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
|
||||||
{"name":"Products","id":"products"},
|
{"name":"Products","id":"products"},
|
||||||
{"name":"Contact","id":"contact"}
|
{"name":"Contact","id":"contact"}
|
||||||
]}
|
]}
|
||||||
@@ -52,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":"Pricing","href":"#pricing"},{"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."
|
||||||
@@ -86,7 +85,6 @@ function ShopPageContent() {
|
|||||||
{"name":"Home","id":"/"},
|
{"name":"Home","id":"/"},
|
||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"results"},
|
{"name":"Results","id":"results"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
|
||||||
{"name":"Products","id":"products"},
|
{"name":"Products","id":"products"},
|
||||||
{"name":"Contact","id":"contact"}
|
{"name":"Contact","id":"contact"}
|
||||||
]}
|
]}
|
||||||
@@ -107,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":"Pricing","href":"#pricing"},{"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