diff --git a/src/app/ai-image-generator/page.tsx b/src/app/ai-image-generator/page.tsx new file mode 100644 index 0000000..3e4a3ff --- /dev/null +++ b/src/app/ai-image-generator/page.tsx @@ -0,0 +1,92 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import { Wand2 } from "lucide-react"; + +export default function AiImageGeneratorPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "About", id: "/#about" + }, + { + name: "Features", id: "/#features" + }, + { + name: "Products", id: "/#products" + }, + { + name: "Pricing", id: "/#pricing" + }, + { + name: "Testimonials", id: "/#testimonials" + }, + { + name: "FAQ", id: "/#faq" + }, + { + name: "Contact", id: "/#contact" + }, + { + name: "AI Image Generator", id: "/ai-image-generator" + } + ]; + + return ( + + + + +
+
+

+ + AI Image Generator +

+

+ Unleash your creativity with our cutting-edge AI image generation tool. Describe your vision, and let AI bring it to life in stunning visuals. +

+
+

+ (Placeholder for AI Image Generation Interface) +

+ + +
+

+ Please note: This is a placeholder. Full functionality coming soon! +

+
+
+
+
+ ); +} \ No newline at end of file