diff --git a/src/app/globals.css b/src/app/globals.css
index f624db2..9afda56 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -1,5 +1,31 @@
-@import "tailwindcss";
-@import "./styles/variables.css";
-@import "./styles/theme.css";
-@import "./styles/utilities.css";
-@import "./styles/base.css";
+@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
+
+@layer base {
+ * {
+ @apply border-border;
+ }
+
+ html {
+ @apply scroll-smooth;
+ }
+
+ body {
+ @apply bg-background text-foreground;
+ font-family: var(--font-inter), sans-serif;
+ }
+
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6 {
+ @apply font-heading;
+ }
+}
+
+@layer components {
+ .btn {
+ @apply px-6 py-2 rounded-lg transition-colors;
+ }
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3740059..af27434 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,25 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } from "next/font/google";
+import "./styles/variables.css";
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 nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "AIFlow - Enterprise AI Platform", description: "Advanced artificial intelligence platform for real-time analytics, predictive insights, and intelligent automation. Join 500+ enterprises transforming their business with AIFlow.", keywords: "AI platform, machine learning, data analytics, automation, predictive intelligence, enterprise AI, neural networks", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "AIFlow - Enterprise AI Platform", description: "Transform your business with cutting-edge artificial intelligence. Real-time analytics and predictive insights for enterprise growth.", type: "website", siteName: "AIFlow", images: [{
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW4PXB76rZD9PAaiHKWMP6l5cV/modern-ai-dashboard-interface-with-dark--1772697413928-0481aec5.png", alt: "Modern AI dashboard interface with dark theme showing real-time analytics, data visualizations, and "}],
- },
- twitter: {
- card: "summary_large_image", title: "AIFlow - Enterprise AI Platform", description: "Transform your business with cutting-edge artificial intelligence and real-time analytics.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW4PXB76rZD9PAaiHKWMP6l5cV/modern-ai-dashboard-interface-with-dark--1772697413928-0481aec5.png"],
- },
-};
+ title: "Sales Outreach AI - Intelligent Outreach Platform", description: "Transform your sales outreach with AI-powered automation, intelligent targeting, and proven results."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-