Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 089dfd1e87 | |||
| b444c8bae8 | |||
| 7fe1ec6924 | |||
| 17f4ae8dee | |||
| 44def16a65 | |||
| d2adc97340 | |||
| b045701771 | |||
| 81885f7a9e | |||
| 8c33de3f41 | |||
| 33671fd046 | |||
| bd33582358 |
@@ -13,9 +13,7 @@ export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Capabilities", id: "capabilities" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Resources", id: "resources" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Start Now", id: "contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -46,7 +44,7 @@ export default function ContactPage() {
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbgrarWA6Ni3cF0kNAO9uvWj12/a-modern-sleek-ai-powered-life-operating-1772866977604-fb5c9c8d.png?_wi=2"
|
||||
imageAlt="LifeOS Support Team"
|
||||
buttons={[
|
||||
{ text: "Start Free Trial", href: "/contact" },
|
||||
{ text: "Start Now", href: "/contact" },
|
||||
{ text: "Schedule Demo", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -99,7 +97,7 @@ export default function ContactPage() {
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your.email@company.com"
|
||||
buttonText="Start Free Trial"
|
||||
buttonText="Start Now"
|
||||
termsText="By signing up, you agree to our Terms of Service and Privacy Policy. No credit card required."
|
||||
onSubmit={(email) => console.log("Email submitted:", email)}
|
||||
/>
|
||||
@@ -117,4 +115,4 @@ export default function ContactPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,76 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "LifeOS - AI Life Operating System for Professionals",
|
||||
description: "Transform your productivity and life balance with AI-powered scheduling, family time protection, and personalized coaching. Designed for working professionals balancing career, family, health, and growth.",
|
||||
keywords: "productivity app, AI scheduling, life balance, time management, work-life balance, professional productivity, family time protection, digital wellness",
|
||||
metadataBase: new URL("https://www.lifeos.app"),
|
||||
alternates: {
|
||||
canonical: "https://www.lifeos.app",
|
||||
},
|
||||
openGraph: {
|
||||
title: "LifeOS - Your Personal AI Life Operating System",
|
||||
description: "Intelligent productivity platform combining AI scheduling, life balance analytics, and personalized coaching for working professionals.",
|
||||
url: "https://www.lifeos.app",
|
||||
siteName: "LifeOS",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbgrarWA6Ni3cF0kNAO9uvWj12/a-modern-sleek-ai-powered-life-operating-1772866977604-fb5c9c8d.png",
|
||||
alt: "LifeOS Dashboard - AI Life Operating System",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "LifeOS - AI Life Operating System",
|
||||
description: "Transform productivity and life balance with intelligent AI scheduling and personalized coaching.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbgrarWA6Ni3cF0kNAO9uvWj12/a-modern-sleek-ai-powered-life-operating-1772866977604-fb5c9c8d.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "LifeOS", description: "Your Personal AI Life Operating System"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1438,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,21 +6,17 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { Zap, CheckCircle, Clock, BarChart3, Focus, Heart, AlertCircle, Brain, DollarSign, Sparkles, Mail, HelpCircle } from "lucide-react";
|
||||
import { Zap, CheckCircle, Clock, BarChart3, Focus, Heart, AlertCircle, Brain, Sparkles, Mail, HelpCircle } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Capabilities", id: "capabilities" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Resources", id: "resources" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Start Now", id: "contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -53,7 +49,7 @@ export default function HomePage() {
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbgrarWA6Ni3cF0kNAO9uvWj12/a-modern-sleek-ai-powered-life-operating-1772866977604-fb5c9c8d.png?_wi=1"
|
||||
imageAlt="AI Life Operating System Dashboard"
|
||||
buttons={[
|
||||
{ text: "Start Free Trial", href: "contact" },
|
||||
{ text: "Start Now", href: "contact" },
|
||||
{ text: "Watch Demo", onClick: () => {} },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -148,29 +144,6 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Metrics Section */}
|
||||
<div id="resources" data-section="resources">
|
||||
<MetricCardFourteen
|
||||
title="Professionals trust LifeOS to transform their daily productivity and life balance. Our users report significant improvements in work-life harmony and personal satisfaction."
|
||||
tag="Life Impact"
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "2.5+ hrs", description:
|
||||
"Average daily productivity gain through optimized scheduling and focus mode"},
|
||||
{
|
||||
id: "2", value: "89%", description:
|
||||
"Improvement in family time quality and consistency reporting"},
|
||||
{
|
||||
id: "3", value: "3x", description: "Reduction in decision fatigue through AI-powered daily planning"},
|
||||
{
|
||||
id: "4", value: "95%", description: "Successful meeting of daily life balance goals with AI coaching"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Testimonials Section */}
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
@@ -197,49 +170,6 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Pricing Section */}
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
plans={[
|
||||
{
|
||||
id: "1", price: "$29/month", name: "Essential", buttons: [
|
||||
{ text: "Start Free Trial", onClick: () => {} },
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Daily AI scheduling", "Basic life balance tracking", "Deep focus mode", "Distraction monitoring", "Email support"],
|
||||
},
|
||||
{
|
||||
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$79/month", name: "Professional", buttons: [
|
||||
{ text: "Start Free Trial", onClick: () => {} },
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Advanced AI scheduling", "Complete life analytics", "Priority focus mode", "Advanced distraction tracking", "Weekly AI coaching", "Priority support", "Integration suite"],
|
||||
},
|
||||
{
|
||||
id: "3", price: "$149/month", name: "Elite", buttons: [
|
||||
{ text: "Start Free Trial", onClick: () => {} },
|
||||
{ text: "Chat to Sales", href: "contact" },
|
||||
],
|
||||
features: [
|
||||
"Premium AI scheduling", "Real-time life optimization", "Elite focus features", "Predictive analytics", "Daily personalized coaching", "24/7 priority support", "Full integration suite", "Family account management"],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the plan that fits your productivity goals. All plans include core features with different levels of AI personalization."
|
||||
tag="Affordable Plans"
|
||||
tagIcon={DollarSign}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View All Plans", href: "/pricing" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
@@ -294,7 +224,7 @@ export default function HomePage() {
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your.email@company.com"
|
||||
buttonText="Start Free Trial"
|
||||
buttonText="Start Now"
|
||||
termsText="By signing up, you agree to our Terms of Service and Privacy Policy. No credit card required."
|
||||
onSubmit={(email: string) => console.log("Email signup:", email)}
|
||||
/>
|
||||
@@ -310,4 +240,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user