Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-08 17:11:55 +00:00
2 changed files with 15 additions and 22 deletions

View File

@@ -2,7 +2,6 @@ import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
@@ -19,10 +18,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body className={`${inter.variable}`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
{children}
<script
id="lenis-script"
dangerouslySetInnerHTML={{
@@ -1414,8 +1410,4 @@ export default function RootLayout({
</body>
</html>
);
}
function Tag() {
return null;
}

View File

@@ -10,7 +10,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, CheckCircle, HelpCircle, Rocket, Sparkles, Zap } from 'lucide-react';
import { Award, CheckCircle, HelpCircle, Rocket, Sparkles, Zap, Users, TrendingUp, Heart } from 'lucide-react';
export default function LandingPage() {
return (
@@ -54,8 +54,11 @@ export default function LandingPage() {
{ text: "Join Beta", href: "https://example.com/beta" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/books-versus-technology-concept_23-2149765859.jpg"
imageAlt="Axis app dashboard showing growth tracking interface"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/books-versus-technology-concept_23-2149765859.jpg", imageAlt: "Axis app dashboard showing growth tracking interface"
}
]}
mediaAnimation="slide-up"
ariaLabel="Axis personal growth platform hero section"
/>
@@ -120,15 +123,16 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="uniform-all-items-equal"
metrics={[
{
id: "1", value: "10K+", title: "Active Users", description: "Ambitious professionals aged 2540, wellness coaches and mentors, personal development enthusiasts"
id: "1", value: "10K+", title: "Active Users", description: "Ambitious professionals aged 2540, wellness coaches and mentors, personal development enthusiasts", icon: Users
},
{
id: "2", value: "500K+", title: "Habits Tracked", description: "Daily habit completion, consistent growth momentum, real transformation stories"
id: "2", value: "500K+", title: "Habits Tracked", description: "Daily habit completion, consistent growth momentum, real transformation stories", icon: TrendingUp
},
{
id: "3", value: "98%", title: "User Satisfaction", description: "Intuitive interface design, measurable progress insights, life-changing impact"
id: "3", value: "98%", title: "User Satisfaction", description: "Intuitive interface design, measurable progress insights, life-changing impact", icon: Heart
}
]}
/>
@@ -138,16 +142,13 @@ export default function LandingPage() {
<TestimonialCardSix
testimonials={[
{
id: "1", testimonial: "Axis finally gave me clarity on what actually matters. Tracking my growth across all four dimensions has been transformative—I can see exactly where I'm thriving and where I need support. It's like having a personal life coach in my pocket.", rating: 5,
author: "Sarah Mitchell, Executive Coach", avatars: [
{ src: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg", alt: "Sarah Mitchell" },
{ src: "http://img.b2bpic.net/free-photo/portrait-elegant-bearded-man-dressed-wool-jacket-bow-tie_613910-15696.jpg", alt: "James Chen" },
{ src: "http://img.b2bpic.net/free-photo/medium-shot-woman-work-portrait_23-2149304144.jpg", alt: "Emma Rodriguez" },
{ src: "http://img.b2bpic.net/free-photo/professional-woman-stylish-suit-office-with-tablet-device_23-2150167751.jpg", alt: "David Park" }
]
id: "1", testimonial: "Axis finally gave me clarity on what actually matters. Tracking my growth across all four dimensions has been transformative—I can see exactly where I'm thriving and where I need support. It's like having a personal life coach in my pocket.", name: "Sarah Mitchell", handle: "Executive Coach", imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg"
}
]}
animationType="slide-up"
title="What Our Users Say"
description="Real stories from real people transforming their lives"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>