-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathlayout.tsx
More file actions
61 lines (58 loc) · 2.04 KB
/
layout.tsx
File metadata and controls
61 lines (58 loc) · 2.04 KB
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
import type { Metadata } from 'next'
import localFont from 'next/font/local'
import './globals.css'
import TanstackClientProvider from '@/components/providers/tanstack-client-provider'
const geistSans = localFont({
src: './fonts/GeistVF.woff',
variable: '--font-geist-sans',
weight: '100 900',
})
const geistMono = localFont({
src: './fonts/GeistMonoVF.woff',
variable: '--font-geist-mono',
weight: '100 900',
})
export const metadata: Metadata = {
title: 'CodeGuide - AI-Powered Code Development Platform',
description: 'Elevate your coding experience with AI-powered insights, real-time suggestions, and intelligent code analysis. Transform how you write, review, and optimize code with CodeGuide.',
keywords: 'code analysis, AI programming, development tools, code review, programming assistant, software development, code optimization',
authors: [{ name: 'CodeGuide Team' }],
creator: 'CodeGuide',
publisher: 'CodeGuide',
robots: 'index, follow',
openGraph: {
title: 'CodeGuide - AI-Powered Code Development Platform',
description: 'Revolutionize your development workflow with AI-powered code analysis, real-time suggestions, and intelligent programming assistance.',
url: 'https://codeguide.dev',
siteName: 'CodeGuide',
type: 'website',
images: [
{
url: '/codeguide-logo.png',
width: 1200,
height: 630,
alt: 'CodeGuide - AI-Powered Development Platform',
},
],
},
twitter: {
card: 'summary_large_image',
title: 'CodeGuide - AI-Powered Code Development Platform',
description: 'Transform your coding experience with intelligent AI-powered development tools.',
images: ['/codeguide-logo.png'],
},
viewport: 'width=device-width, initial-scale=1',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
<TanstackClientProvider>{children}</TanstackClientProvider>
</body>
</html>
)
}