File size: 988 Bytes
f201243
 
 
 
 
 
 
 
 
 
 
 
b8b7791
 
f201243
 
 
 
 
 
 
 
 
e5a550b
 
 
 
f201243
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { Toaster } from "react-hot-toast";
import { ConditionalHeader } from "@/components/layout/ConditionalHeader";

const inter = Inter({
  subsets: ["latin"],
  variable: "--font-inter",
});

export const metadata: Metadata = {
  title: "PsyAdGenesis",
  description: "Design ads that stop the scroll. Generate high-converting ad creatives for Home Insurance and GLP-1 niches using psychological triggers and AI-powered image generation.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body 
        className={`${inter.variable} font-sans antialiased bg-gray-50`}
        suppressHydrationWarning
      >
        <ConditionalHeader />
        <main className="min-h-screen">
        {children}
        </main>
        <Toaster position="top-right" />
      </body>
    </html>
  );
}