metatags
Browse files
.gitignore
CHANGED
@@ -39,3 +39,5 @@ yarn-error.log*
|
|
39 |
# typescript
|
40 |
*.tsbuildinfo
|
41 |
next-env.d.ts
|
|
|
|
|
|
39 |
# typescript
|
40 |
*.tsbuildinfo
|
41 |
next-env.d.ts
|
42 |
+
|
43 |
+
.vercel
|
app/layout.tsx
CHANGED
@@ -1,8 +1,98 @@
|
|
|
|
1 |
import { ThemeProvider } from "@/components/theme-provider"
|
|
|
2 |
import './globals.css'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
export default function RootLayout({ children }) {
|
4 |
return (
|
5 |
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
<body>
|
7 |
<ThemeProvider attribute="class" defaultTheme="dark">
|
8 |
{children}
|
|
|
1 |
+
import type { Metadata } from 'next'
|
2 |
import { ThemeProvider } from "@/components/theme-provider"
|
3 |
+
import Script from "next/script"
|
4 |
import './globals.css'
|
5 |
+
|
6 |
+
const title = "Pollinations Chatbox - Karma.yt Experiment"
|
7 |
+
const description = "An experimental chat interface powered by Karma.yt, utilizing the advanced AI and image generation capabilities of Pollinations."
|
8 |
+
|
9 |
+
export const metadata: Metadata = {
|
10 |
+
metadataBase: new URL('https://karma.pollinations.ai'),
|
11 |
+
title,
|
12 |
+
description,
|
13 |
+
keywords: [
|
14 |
+
"Pollinations Chatbox",
|
15 |
+
"Karma.yt",
|
16 |
+
"Pollinations.ai",
|
17 |
+
"AI experiment",
|
18 |
+
"text and image generation",
|
19 |
+
"Next.js",
|
20 |
+
"Tailwind CSS",
|
21 |
+
"Shadcn UI",
|
22 |
+
"flux",
|
23 |
+
"flux-realism",
|
24 |
+
"flux-cablyai",
|
25 |
+
"flux-anime",
|
26 |
+
"flux-3d",
|
27 |
+
"any-dark",
|
28 |
+
"flux-pro",
|
29 |
+
"turbo",
|
30 |
+
"OpenAI GPT-4o",
|
31 |
+
"Qwen",
|
32 |
+
"Llama",
|
33 |
+
"Mistral",
|
34 |
+
"Unity",
|
35 |
+
"Unity with Mistral Large by Unity AI Lab",
|
36 |
+
"Midijourney",
|
37 |
+
"Rtist",
|
38 |
+
"SearchGPT",
|
39 |
+
"OptiLLM",
|
40 |
+
"DeepSeek",
|
41 |
+
"Machine Learning",
|
42 |
+
"Deep Learning",
|
43 |
+
"Vercel",
|
44 |
+
"Nextjs",
|
45 |
+
"Nodejs",
|
46 |
+
"Pollinations.ai",
|
47 |
+
"localstorage",
|
48 |
+
"conversation models",
|
49 |
+
"AI models",
|
50 |
+
"chatbots",
|
51 |
+
"image generation",
|
52 |
+
"GPT vision",
|
53 |
+
"creative prompts",
|
54 |
+
"conversation AI",
|
55 |
+
"model interaction",
|
56 |
+
"open source",
|
57 |
+
"alpha version",
|
58 |
+
"developer tools",
|
59 |
+
"react",
|
60 |
+
"web development",
|
61 |
+
"programming",
|
62 |
+
"tech experimentation",
|
63 |
+
"pollinations discord",
|
64 |
+
"Pollinations AI community",
|
65 |
+
"WhatsApp group"
|
66 |
+
],
|
67 |
+
openGraph: {
|
68 |
+
title,
|
69 |
+
description,
|
70 |
+
type: 'website',
|
71 |
+
url: 'https://karma.pollinations.ai',
|
72 |
+
},
|
73 |
+
authors: [{ name: 'Diogo Karma', url: 'https://karma.yt' }],
|
74 |
+
category: 'Technology',
|
75 |
+
}
|
76 |
+
|
77 |
export default function RootLayout({ children }) {
|
78 |
return (
|
79 |
<html lang="en" suppressHydrationWarning>
|
80 |
+
<head><Script
|
81 |
+
strategy="afterInteractive"
|
82 |
+
src="https://www.googletagmanager.com/gtag/js?id=G-4QJ7GS0M0S"
|
83 |
+
/>
|
84 |
+
<Script
|
85 |
+
id="google-analytics"
|
86 |
+
strategy="afterInteractive"
|
87 |
+
dangerouslySetInnerHTML={{
|
88 |
+
__html: `
|
89 |
+
window.dataLayer = window.dataLayer || [];
|
90 |
+
function gtag(){dataLayer.push(arguments);}
|
91 |
+
gtag('js', new Date());
|
92 |
+
gtag('config', 'G-4QJ7GS0M0S');
|
93 |
+
`
|
94 |
+
}}
|
95 |
+
/></head>
|
96 |
<body>
|
97 |
<ThemeProvider attribute="class" defaultTheme="dark">
|
98 |
{children}
|
public/st,small,507x507-pad,600x600,f8f8f8 (1).jpg
DELETED
Binary file (55.8 kB)
|
|
public/st,small,507x507-pad,600x600,f8f8f8.jpg
DELETED
Binary file (53.3 kB)
|
|