56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import type React from "react"
|
|
import type { Metadata, Viewport } from "next"
|
|
import { Inter, JetBrains_Mono } from "next/font/google"
|
|
import { Analytics } from "@vercel/analytics/next"
|
|
import { DataStoreProvider } from "@/lib/data-store"
|
|
import "./globals.css"
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
const jetbrainsMono = JetBrains_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-mono",
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: "atticl — Backend Developer & Co-founder",
|
|
description:
|
|
"Backend developer focused on architecture, APIs, databases, performance, and security. Co-founder of crowware.com.",
|
|
generator: "v0.app",
|
|
icons: {
|
|
icon: [
|
|
{
|
|
url: "/icon-light-32x32.png",
|
|
media: "(prefers-color-scheme: light)",
|
|
},
|
|
{
|
|
url: "/icon-dark-32x32.png",
|
|
media: "(prefers-color-scheme: dark)",
|
|
},
|
|
{
|
|
url: "/icon.svg",
|
|
type: "image/svg+xml",
|
|
},
|
|
],
|
|
apple: "/apple-icon.png",
|
|
},
|
|
}
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: "#1a1a1f",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className={`${inter.className} ${jetbrainsMono.variable} font-sans antialiased`}>
|
|
<DataStoreProvider>{children}</DataStoreProvider>
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|