diff --git a/app/globals.css b/app/globals.css
index 947a048..90a3c45 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -1,10 +1,5 @@
@import "tailwindcss";
-@theme {
- --font-sans: var(--font-geist-sans);
- --font-mono: var(--font-geist-mono);
-}
-
:root {
--background: #ffffff;
--foreground: #171717;
@@ -20,5 +15,5 @@
body {
color: var(--foreground);
background: var(--background);
- font-family: Arial, Helvetica, sans-serif;
+ font-family: "JetBrains Mono", monospace;
}
diff --git a/app/layout.tsx b/app/layout.tsx
index f7fa87e..b259189 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,31 +1,36 @@
import type { Metadata } from "next";
-import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-const geistSans = Geist({
- variable: "--font-geist-sans",
- subsets: ["latin"],
-});
-
-const geistMono = Geist_Mono({
- variable: "--font-geist-mono",
- subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
+ 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,
-}: 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..f306f40 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,100 +1,81 @@
+import searchPic from '../public/search.svg';
+
+
import Image from "next/image";
+import Link from "next/link";
+import AnimatedLink from '../components/animatedLink';
+import BlogArea from "../components/blogpost";
+import HeaderToolbar from "../components/header/toolbar";
+
+// Mock data for blog posts
+const blogposts = [
+ {
+ label: 'Retro Futurism: A Journey Through Time',
+ body: 'Explore the fascinating world of retro futurism and its impact on modern science and culture.',
+ publish: '2023-10-01',
+ get_absolute_url: '/blog/retro-futurism',
+ },
+ {
+ label: 'The Science Behind Video Games',
+ body: 'Discover how video games are pushing the boundaries of technology and human interaction.',
+ publish: '2023-09-25',
+ get_absolute_url: '/blog/science-video-games',
+ },
+];
export default function Home() {
return (
-
-
-
-
- -
- Get started by editing{" "}
-
- app/page.tsx
-
- .
-
- - Save and see your changes instantly.
-
+