- Consolidate common utilities (cn, format, time) into lib/utils - Remove redundant utility files from pastel and units directories - Clean up unused components (Separator, KeyboardShortcutsHelp) - Relocate CommandPalette to components/units/ui/ - Force dark mode on landing page and improve theme persistence logic - Add FOUC prevention script to RootLayout - Fix sidebar height constraint in AppShell
87 lines
2.9 KiB
TypeScript
87 lines
2.9 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
import { Providers } from '@/components/providers/Providers';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Kit - Your Creative Toolkit',
|
|
description: 'A curated collection of creative and utility tools for developers and creators. Features file conversion, image editing, and color manipulation.',
|
|
keywords: ['tools', 'utilities', 'file converter', 'image editor', 'color palette', 'creative toolkit', 'convert', 'paint', 'pastel', 'open source'],
|
|
authors: [{ name: 'pivoine.art' }],
|
|
creator: 'pivoine.art',
|
|
publisher: 'pivoine.art',
|
|
metadataBase: new URL('https://kit.pivoine.art'),
|
|
openGraph: {
|
|
title: 'Kit - Your Creative Toolkit',
|
|
description: 'A curated collection of creative and utility tools for developers and creators. Privacy-first, open source, and free to use.',
|
|
url: 'https://kit.pivoine.art',
|
|
siteName: 'Kit',
|
|
locale: 'en_US',
|
|
type: 'website',
|
|
images: [
|
|
{
|
|
url: '/og-image.png',
|
|
width: 1200,
|
|
height: 630,
|
|
alt: 'Kit - Your Creative Toolkit',
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
title: 'Kit - Your Creative Toolkit',
|
|
description: 'A curated collection of creative and utility tools for developers and creators.',
|
|
images: ['/og-image.png'],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
'max-video-preview': -1,
|
|
'max-image-preview': 'large',
|
|
'max-snippet': -1,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark" suppressHydrationWarning>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="preconnect" href="https://kit.pivoine.art" />
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `
|
|
(function() {
|
|
try {
|
|
var theme = localStorage.getItem('theme');
|
|
var isLanding = window.location.pathname === '/';
|
|
if (isLanding) {
|
|
document.documentElement.classList.add('dark');
|
|
document.documentElement.classList.remove('light');
|
|
} else if (theme === 'light' || (!theme && window.matchMedia('(prefers-color-scheme: light)').matches)) {
|
|
document.documentElement.classList.add('light');
|
|
document.documentElement.classList.remove('dark');
|
|
} else {
|
|
document.documentElement.classList.add('dark');
|
|
document.documentElement.classList.remove('light');
|
|
}
|
|
} catch (e) {}
|
|
})();
|
|
`,
|
|
}}
|
|
/>
|
|
</head>
|
|
<body className="antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|