diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 24f68b4..7115d76 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2882e6e..6aadf3c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,16 @@ 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"], -}); 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 ( - - - - - {children} - + + {children}