Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 11f66411ce | |||
| 32a5a5d546 | |||
| cdfd570dde | |||
| a309c83274 | |||
| 6ed84edf75 | |||
| 452196c385 | |||
| c53489fba5 |
@@ -1,53 +1,26 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Max | AI Looksmaxxing Coach - SMS Fitness, Nutrition & Bone Health", description: "Your AI coach, every day in your pocket. Get personalized SMS coaching for fitness, nutrition, and bone health. Real feedback. Real results. Transform your appearance with Max.", keywords: "looksmaxxing, fitness coaching, nutrition guidance, appearance optimization, AI coach, SMS coaching, bone health, facial analysis", metadataBase: new URL("https://maxlooksmaxx.com"),
|
title: "Max | AI Looksmaxxing Coach", description: "Personalized AI coaching for fitness, nutrition, and appearance optimization through daily SMS guidance."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://maxlooksmaxx.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Max | AI Looksmaxxing Coach", description: "Personalized SMS coaching for fitness, nutrition, and appearance optimization.", url: "https://maxlooksmaxx.com", siteName: "Max", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://maxlooksmaxx.com/og-image.jpg", alt: "Max AI Coach Dashboard"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Max | AI Looksmaxxing Coach", description: "Your AI coach, every day in your pocket.", images: ["https://maxlooksmaxx.com/twitter-image.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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 className={inter.variable}>
|
||||||
<body
|
{children}
|
||||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1388,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,16 +14,16 @@ import { Calendar, Camera, CreditCard, LayoutDashboard, MessageCircle, Package,
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="bounce-effect"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="medium"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="medium"
|
||||||
background="circleGradient"
|
background="none"
|
||||||
cardStyle="subtle-shadow"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
@@ -47,16 +47,16 @@ export default function LandingPage() {
|
|||||||
description="Max sends SMS notifications tailored to your goals—fitness, nutrition, bone health, and more. Real feedback. Real results. Get expert guidance without judgment, delivered directly to your phone."
|
description="Max sends SMS notifications tailored to your goals—fitness, nutrition, bone health, and more. Real feedback. Real results. Get expert guidance without judgment, delivered directly to your phone."
|
||||||
tag="AI-Powered Coaching"
|
tag="AI-Powered Coaching"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="none"
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "plain" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Your Transformation", href: "#contact" },
|
{ text: "Start Your Transformation", href: "#contact" },
|
||||||
{ text: "See How It Works", href: "#workflow" }
|
{ text: "See How It Works", href: "#workflow" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="none"
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/workout-tracker-app-set_23-2148637445.jpg"
|
imageSrc="http://img.b2bpic.net/free-vector/workout-tracker-app-set_23-2148637445.jpg"
|
||||||
imageAlt="Max Dashboard - Personalized coaching interface"
|
imageAlt="Max Dashboard - Personalized coaching interface"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="none"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
fixedMediaHeight={true}
|
fixedMediaHeight={true}
|
||||||
/>
|
/>
|
||||||
@@ -67,9 +67,9 @@ export default function LandingPage() {
|
|||||||
title="Specialized Coaching Modules"
|
title="Specialized Coaching Modules"
|
||||||
description="Three core modules designed to optimize every aspect of your appearance and health through data-driven daily SMS guidance."
|
description="Three core modules designed to optimize every aspect of your appearance and health through data-driven daily SMS guidance."
|
||||||
tag="Features"
|
tag="Features"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="none"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "fitnessmax", title: "FitnessMax: Strength & Physique", tags: ["Workouts", "Progressive Overload"],
|
id: "fitnessmax", title: "FitnessMax: Strength & Physique", tags: ["Workouts", "Progressive Overload"],
|
||||||
@@ -84,7 +84,7 @@ export default function LandingPage() {
|
|||||||
imageSrc: "http://img.b2bpic.net/free-photo/chiropractor-checking-spine_1098-16910.jpg", imageAlt: "BoneMax skeletal health module"
|
imageSrc: "http://img.b2bpic.net/free-photo/chiropractor-checking-spine_1098-16910.jpg", imageAlt: "BoneMax skeletal health module"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="none"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@ export default function LandingPage() {
|
|||||||
{ icon: Camera, label: "Step 3: Face Scan", value: "Baseline capture" },
|
{ icon: Camera, label: "Step 3: Face Scan", value: "Baseline capture" },
|
||||||
{ icon: LayoutDashboard, label: "Step 4: Dashboard", value: "Daily coaching" }
|
{ icon: LayoutDashboard, label: "Step 4: Dashboard", value: "Daily coaching" }
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="none"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -108,8 +108,8 @@ export default function LandingPage() {
|
|||||||
description="Track your progress with precision metrics that matter."
|
description="Track your progress with precision metrics that matter."
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="none"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "92", title: "%", description: "Users report visible improvements within 8 weeks", icon: TrendingUp
|
id: "1", value: "92", title: "%", description: "Users report visible improvements within 8 weeks", icon: TrendingUp
|
||||||
@@ -160,9 +160,9 @@ export default function LandingPage() {
|
|||||||
title="Begin Your Transformation Today"
|
title="Begin Your Transformation Today"
|
||||||
description="Join hundreds of men who are already seeing results. Secure login → Face scan baseline → Personalized SMS coaching starts immediately."
|
description="Join hundreds of men who are already seeing results. Secure login → Face scan baseline → Personalized SMS coaching starts immediately."
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="none"
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email"
|
||||||
buttonText="Start Free Trial"
|
buttonText="Start Free Trial"
|
||||||
termsText="14-day free trial. No credit card required. Cancel anytime."
|
termsText="14-day free trial. No credit card required. Cancel anytime."
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #ffffff;
|
||||||
--card: #ffffff;
|
--card: #f9f9f9;
|
||||||
--foreground: #25190c;
|
--foreground: #000000;
|
||||||
--primary-cta: #ff6207;
|
--primary-cta: #000000;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #25190c;
|
--secondary-cta-text: #25190c;
|
||||||
--accent: #ffce93;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #e8cfa8;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user