File size: 2,529 Bytes
0e61290
59b210a
0e61290
59b210a
0e61290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59b210a
 
 
0e61290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59b210a
 
 
 
 
 
 
 
 
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import type { Metadata } from 'next'
import { ThemeProvider } from "@/components/theme-provider"
import Script from "next/script"
import './globals.css'

const title = "Pollinations Chatbox - Karma.yt Experiment"
const description = "An experimental chat interface powered by Karma.yt, utilizing the advanced AI and image generation capabilities of Pollinations."

export const metadata: Metadata = {
  metadataBase: new URL('https://karma.pollinations.ai'),
  title,
  description,
  keywords: [
    "Pollinations Chatbox",
    "Karma.yt",
    "Pollinations.ai",
    "AI experiment",
    "text and image generation",
    "Next.js",
    "Tailwind CSS",
    "Shadcn UI",
    "flux",
    "flux-realism",
    "flux-cablyai",
    "flux-anime",
    "flux-3d",
    "any-dark",
    "flux-pro",
    "turbo",
    "OpenAI GPT-4o",
    "Qwen",
    "Llama",
    "Mistral",
    "Unity",
    "Unity with Mistral Large by Unity AI Lab",
    "Midijourney",
    "Rtist",
    "SearchGPT",
    "OptiLLM",
    "DeepSeek",
    "Machine Learning",
    "Deep Learning",
    "Vercel",
    "Nextjs",
    "Nodejs",
    "Pollinations.ai",
    "localstorage",
    "conversation models",
    "AI models",
    "chatbots",
    "image generation",
    "GPT vision",
    "creative prompts",
    "conversation AI",
    "model interaction",
    "open source",
    "alpha version",
    "developer tools",
    "react",
    "web development",
    "programming",
    "tech experimentation",
    "pollinations discord",
    "Pollinations AI community",
    "WhatsApp group"
  ],
  openGraph: {
    title,
    description,
    type: 'website',
    url: 'https://karma.pollinations.ai',
  },
  authors: [{ name: 'Diogo Karma', url: 'https://karma.yt' }],
  category: 'Technology',
}

export default function RootLayout({ children }) {
  return (
    <html lang="en" suppressHydrationWarning>
      <head><Script
        strategy="afterInteractive"
        src="https://www.googletagmanager.com/gtag/js?id=G-4QJ7GS0M0S"
      />
        <Script
          id="google-analytics"
          strategy="afterInteractive"
          dangerouslySetInnerHTML={{
            __html: `
              window.dataLayer = window.dataLayer || [];
              function gtag(){dataLayer.push(arguments);}
              gtag('js', new Date());
              gtag('config', 'G-4QJ7GS0M0S');
            `
          }}
        /></head>
      <body>
        <ThemeProvider attribute="class" defaultTheme="dark">
          {children}
        </ThemeProvider>
      </body>
    </html>
  )
}