Files
darkwave/app/layout.tsx
AderKonstantin 1c85792839 feat(layout): Adjust content container width
Increases the maximum content container width on larger screens
to provide more breathing room and a better reading experience.
This change was made to improve the overall layout and
visual presentation of the application.
2025-04-01 19:38:40 +03:00

44 lines
1.2 KiB
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import MainHeader from "@/components/header/main";
import MainFooter from "@/components/footer/main";
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
},
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html className="dark" lang="en">
<body className={`bg-black text-white light:bg-white light:text-black font-sans`}>
<div className="text-xl 2xl:mx-72 xl:mx-36 md:mx-6">
<MainHeader />
{children}
<MainFooter />
</div>
</body>
</html>
);
}