Features: - Image generation (OpenAI, Gemini, Leonardo, Bria, Stability, Flux) - Nano Banana iterative editing - Video generation and upscaling - Audio TTS, STT, sound effects (ElevenLabs) - Text prompt studio and alt text - User authentication with JWT/cookies - Admin panel with voice management - Job queue with Celery - PostgreSQL + Redis backend - Next.js 15 + FastAPI architecture 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import { Toaster } from 'react-hot-toast';
|
|
import './globals.css';
|
|
import AuthProvider from '@/components/AuthProvider';
|
|
import AppShell from '@/components/AppShell';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'FORGE AI - Creative Tools Platform',
|
|
description: 'Unified AI-powered creative tools for image, video, and audio generation',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="font-montserrat bg-forge-black min-h-screen">
|
|
<Toaster
|
|
position="top-right"
|
|
toastOptions={{
|
|
style: {
|
|
background: '#1a1a1a',
|
|
color: '#fff',
|
|
border: '1px solid #2a2a2a',
|
|
},
|
|
success: {
|
|
iconTheme: {
|
|
primary: '#FFC407',
|
|
secondary: '#000',
|
|
},
|
|
},
|
|
}}
|
|
/>
|
|
<AuthProvider>
|
|
<AppShell>{children}</AppShell>
|
|
</AuthProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|