Files
darkwave/app/page.tsx
AderKonstantin 775942d71a feat: Update site metadata and styling
This commit updates the site metadata and styling in the `app/layout.tsx` file:

- Changes the title to "AderKI Blog" and the description to "Welcome to AderKI Blog. Explore hoodies, comics, books, and more in my personal store."
- Adds keywords, authors, and Open Graph metadata for better SEO and social sharing.
- Changes the default body styles to use a black background and white text with a sans-serif font.

In the `app/page.tsx` file, the changes include:

- Removes the default Next.js homepage content and replaces it with a simple header section.
- The header includes the site title "AderKI" and a brief description of the store.
- The main content area is left empty, as it will be filled with blog post components in a future commit.

These changes aim to set the foundation for the AderKI Blog, providing a more personalized and focused experience for the users.
2025-03-01 07:10:28 +03:00

48 lines
1.9 KiB
TypeScript

import Image from "next/image";
export default function Home() {
return (
<div className="text-xl mx-24">
<header className="flex flex-col">
<div className="flex flex-row mt-12 mb-22">
<ul className="w-full flex flex-row justify-between list-none">
<li className="text-6xl p-2 pr-0">
<a href="https://aderk.tech/" className="text-white no-underline relative hover:text-white">
AderKI
</a>
</li>
</ul>
</div>
<div className="text-3xl mb-20">
<p>
Hello. This is my personal store. Here I sell hoodies, comics, books, and other items. You can buy them.
</p>
</div>
</header>
<main>
{/* Blogpost Components Here */}
</main>
<footer className="border-t border-white pt-4 flex flex-row justify-around text-2xl">
<ul className="list-none m-4">
<li className="text-3xl"><h3>Socials</h3></li>
<li className="p-3 text-xl"><a href="https://www.instagram.com/aderkitty/">Instagram</a></li>
<li className="p-3 text-xl"><a href="https://mastodon.social/@aderkonstantin">Mastodon</a></li>
<li className="p-3 text-xl"><a href="https://github.com/AderKonstantin">GitHub</a></li>
<li className="p-3 text-xl"><a href="https://steamcommunity.com/yourprofile">Steam</a></li>
</ul>
<ul className="list-none m-4">
<li className="text-3xl"><h3>Games</h3></li>
<li className="p-3 text-xl"><a href="#">Joe The Rabbit</a></li>
</ul>
<ul className="list-none m-4">
<li className="text-3xl"><h3>Other Projects</h3></li>
<li className="p-3 text-xl"><a href="#">Ader Berry Bot (Telegram)</a></li>
<li className="p-3 text-xl"><a href="#">Store</a></li>
</ul>
</footer>
</div>
);
}