From 2a4eb6d6adeaa1cf28c74580ce694b19485be0ae Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:59:50 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5ccaf7c..576c3b6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,5 @@ import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; @@ -10,24 +9,19 @@ const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "AICore - Enterprise AI Solutions", description: "Transform your business with intelligent AI platform. Automate workflows, gain insights, and scale operations with advanced machine learning.", keywords: "AI, machine learning, artificial intelligence, automation, analytics, predictive analytics", robots: { + title: "AICore - Free AI Tools Platform", description: "Access free AI-powered tools including image generation, voice generation, and advanced AI utilities. No credit card required.", keywords: "AI, free AI tools, image generation, voice generation, artificial intelligence, free tools, AI utilities", robots: { index: true, follow: true, }, openGraph: { - title: "AICore - Enterprise AI Solutions", description: "Intelligent AI platform for modern business transformation", siteName: "AICore", type: "website"}, + title: "AICore - Free AI Tools Platform", description: "Powerful free AI tools for image and voice generation", siteName: "AICore", type: "website"}, twitter: { - card: "summary_large_image", title: "AICore - Enterprise AI Solutions", description: "Transform your business with our cutting-edge AI platform"}, + card: "summary_large_image", title: "AICore - Free AI Tools Platform", description: "Free AI image generation, voice generation, and advanced tools"}, }; export default function RootLayout({ @@ -38,9 +32,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From a572549387be84ed3106d82f4b95569e593f357e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:59:51 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 168 +++++++++++++++++++++++++---------------------- 1 file changed, 89 insertions(+), 79 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index df43428..4f4235b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -18,11 +18,14 @@ import { CheckCircle, Crown, Globe, + ImageIcon, + Mic, Settings, Sparkles, Star, TrendingUp, Users, + Wand2, Zap, } from "lucide-react"; @@ -44,72 +47,71 @@ export default function LandingPage() {
-
+
-
+
@@ -226,24 +228,24 @@ export default function LandingPage() {
@@ -252,11 +254,19 @@ export default function LandingPage() { Date: Tue, 3 Mar 2026 12:59:52 +0000 Subject: [PATCH 3/3] Add src/app/tools/page.tsx --- src/app/tools/page.tsx | 168 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 src/app/tools/page.tsx diff --git a/src/app/tools/page.tsx b/src/app/tools/page.tsx new file mode 100644 index 0000000..f8a378c --- /dev/null +++ b/src/app/tools/page.tsx @@ -0,0 +1,168 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; +import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { + BarChart3, + Brain, + ImageIcon, + Mic, + Settings, + Sparkles, + TrendingUp, + Wand2, + Zap, + AlertCircle, + CheckCircle, +} from "lucide-react"; + +export default function ToolsPage() { + return ( + + + +
+
+ +
+ +
+ + +
+ ); +} -- 2.49.1