diff --git a/app/layout.tsx b/app/layout.tsx index f7fa87e..8280697 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -13,19 +13,34 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: 'AderKI Blog', + description: 'Welcome to AderKI Blog. Explore hoodies, comics, books, and more in my personal store.', + keywords: ['AderKI', 'hoodies', 'comics', 'books', 'store', 'blog'], + authors: [{ name: 'AderKI' }], + openGraph: { + title: 'AderKI Blog', + description: 'Welcome to AderKI Blog. Explore hoodies, comics, books, and more in my personal store.', + url: 'https://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, -}: Readonly<{ - children: React.ReactNode; -}>) { +export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} diff --git a/app/page.tsx b/app/page.tsx index 9007252..a2c1699 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -2,99 +2,45 @@ import Image from "next/image"; export default function Home() { return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - app/page.tsx - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - +
+
+
+
+
+

+ Hello. This is my personal store. Here I sell hoodies, comics, books, and other items. You can buy them. +

+
+
+ +
+ {/* Blogpost Components Here */}
-
);