Files
darkwave/app/layout.tsx

40 lines
987 B
TypeScript
Raw Normal View History

2025-03-01 06:33:09 +03:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: 'AderKI Blog',
description: 'Welcome to AderKI Blog. There will be posts about science',
keywords: ['AderKI', 'hoodies', 'comics', 'books', 'store', 'blog'],
authors: [{ name: 'AderKI' }],
openGraph: {
title: 'AderKI Blog',
description: 'Welcome to AderKI Blog. There will be posts about science',
url: 'https://blog.aderk.tech/',
images: [
{
url: '/images/logo.png', // Path to your Open Graph image
width: 800,
height: 600,
alt: 'AderKI Blog Logo',
},
],
siteName: 'AderKI Blog',
},
icons: {
icon: '/images/favicon.ico', // Path to your favicon
},
2025-03-01 06:33:09 +03:00
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
2025-03-01 06:33:09 +03:00
return (
<html lang="en">
<body
className={`bg-black text-white font-sans`}
2025-03-01 06:33:09 +03:00
>
{children}
</body>
</html>
);
}