2025-03-01 06:33:09 +03:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
2025-03-26 14:17:58 +03:00
|
|
|
import MainHeader from "@/components/header/main";
|
2025-03-26 15:38:02 +03:00
|
|
|
import MainFooter from "@/components/footer/main";
|
2025-03-01 06:33:09 +03:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2025-03-01 07:10:28 +03:00
|
|
|
title: 'AderKI Blog',
|
2025-03-25 23:48:52 +03:00
|
|
|
description: 'Welcome to AderKI Blog. There will be posts about science',
|
2025-03-01 07:10:28 +03:00
|
|
|
keywords: ['AderKI', 'hoodies', 'comics', 'books', 'store', 'blog'],
|
|
|
|
|
authors: [{ name: 'AderKI' }],
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: 'AderKI Blog',
|
2025-03-26 00:33:17 +03:00
|
|
|
description: 'Welcome to AderKI Blog. There will be posts about science',
|
2025-03-25 23:48:52 +03:00
|
|
|
url: 'https://blog.aderk.tech/',
|
2025-03-01 07:10:28 +03:00
|
|
|
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
|
|
|
};
|
|
|
|
|
|
2025-03-01 07:10:28 +03:00
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
2025-03-01 06:33:09 +03:00
|
|
|
return (
|
2025-03-26 20:58:40 +03:00
|
|
|
<html className="dark" lang="en">
|
|
|
|
|
<body className={`bg-black text-white light:bg-white light:text-black font-sans`}>
|
2025-03-26 14:17:58 +03:00
|
|
|
<div className="text-xl 2xl:mx-64 xl:mx-32 md:mx-6">
|
|
|
|
|
<MainHeader />
|
|
|
|
|
{children}
|
2025-03-26 15:38:02 +03:00
|
|
|
<MainFooter />
|
2025-03-26 14:17:58 +03:00
|
|
|
</div>
|
2025-03-01 06:33:09 +03:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|