From 81c82188d38ee5aab2d37a62d7cef49de060bbc7 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Tue, 20 Jan 2026 01:40:18 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=88=20style:=20updated=20metadata=20an?= =?UTF-8?q?d=20main=20layout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/layout.tsx | 41 +++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 8ea897e..2806b10 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,38 +1,51 @@ import type { Metadata } from "next"; +import { Merriweather } from 'next/font/google'; 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' }], + title: "Ader Konstantin Blog", + description: "Welcome to AderKI Blog. There will be posts about digital design and computer architecture", + keywords: ["AderKI", "blog", "computer"], + authors: [{ name: "Ader Konstantin" }], openGraph: { - title: 'AderKI Blog', - description: 'Welcome to AderKI Blog. There will be posts about science', - url: 'https://blog.aderk.tech/', + title: "AderKI Blog", + description: "Welcome to AderKI Blog. There will be posts about digital design and computer architecture", + url: "https://blog.aderk.org/", images: [ { - url: '/images/logo.png', // Path to your Open Graph image + url: "/images/logo.png", // Path to your Open Graph image width: 800, height: 600, - alt: 'AderKI Blog Logo', + alt: "AderKI Blog Logo", }, ], - siteName: 'AderKI Blog', + siteName: "Ader Konstantin Blog", }, icons: { - icon: '/images/favicon.ico', // Path to your favicon + icon: "/images/favicon.ico", // Path to your favicon }, }; -export default function RootLayout({ children }: { children: React.ReactNode }) { +import { Source_Serif_4 } from 'next/font/google'; + +const sourceSerif = Source_Serif_4({ + subsets: ['latin', 'cyrillic'], + display: 'swap', +}); +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { return ( - -
+ +
{children}