diff --git a/src/app/auth/page.tsx b/src/app/auth/page.tsx index e2a2d30..956b880 100644 --- a/src/app/auth/page.tsx +++ b/src/app/auth/page.tsx @@ -6,14 +6,12 @@ import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Brain } from "lucide-react"; -import Link from "next/link"; export default function AuthPage() { const navItems = [ { name: "Features", id: "features" }, { name: "Workspace", id: "workspace" }, - { name: "Pricing", id: "pricing" }, - { name: "About", id: "about" }, + { name: "About", id: "workspace" }, { name: "Contact", id: "contact" }, ]; @@ -21,14 +19,13 @@ export default function AuthPage() { { title: "Product", items: [ { label: "Features", href: "#features" }, - { label: "Pricing", href: "#pricing" }, { label: "Security", href: "#" }, { label: "Roadmap", href: "#" }, ], }, { title: "Company", items: [ - { label: "About", href: "#about" }, + { label: "About", href: "#workspace" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, { label: "Contact", href: "#contact" }, @@ -43,6 +40,11 @@ export default function AuthPage() { }, ]; + const handleAuthSubmit = (data: Record) => { + console.log("Auth form submitted:", data); + // Handle authentication here + }; + return ( @@ -108,4 +111,4 @@ export default function AuthPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e81c63b..8e43250 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,70 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MindSpark AI - Intelligent Automation Platform", - description: "Experience the future of work with MindSpark AI. Advanced 3D animations, morphing interfaces, and personalized AI avatars for intelligent automation.", - keywords: "AI automation, 3D animations, intelligent workspace, AI avatars, morphing interface, automation platform", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "MindSpark AI - Intelligent Automation Platform", - description: "Transform your workflow with advanced AI automation, 3D morphing interfaces, and real-time processing.", - url: "https://mindspark-ai.com", - siteName: "MindSpark AI", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZB3zM95gknux0zIzJRmQ6sQPY/a-modern-ai-workspace-interface-mockup-f-1772790280827-6c51aef0.png", - alt: "MindSpark AI Workspace Interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "MindSpark AI - Intelligent Automation Platform", - description: "Experience the future of work with advanced AI automation and sophisticated animations.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZB3zM95gknux0zIzJRmQ6sQPY/a-modern-ai-workspace-interface-mockup-f-1772790280827-6c51aef0.png"], - }, -}; + title: "MindSpark AI", description: "Transform your workflow with MindSpark AI - intelligent automation powered by cutting-edge AI"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}