2025-03-26 13:41:10 +03:00
|
|
|
|
2025-03-01 07:35:06 +03:00
|
|
|
import BlogArea from "../components/blogpost";
|
2025-03-26 14:02:40 +03:00
|
|
|
|
2025-03-01 07:35:06 +03:00
|
|
|
|
|
|
|
|
// 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',
|
2025-03-26 13:48:55 +03:00
|
|
|
tags: ["science", "retro", "science-friction"]
|
2025-03-01 07:35:06 +03:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
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',
|
2025-03-26 13:48:55 +03:00
|
|
|
tags: ["science", "math", "games"]
|
2025-03-01 07:35:06 +03:00
|
|
|
},
|
2025-03-26 13:41:10 +03:00
|
|
|
{
|
|
|
|
|
label: 'How to install Docker & Docker Compose',
|
|
|
|
|
body: 'Guide to install Docker & Docker Compose on your machine.',
|
|
|
|
|
publish: '2023-09-25',
|
|
|
|
|
get_absolute_url: '/blog/docker-installation',
|
2025-03-26 13:48:55 +03:00
|
|
|
tags: ["docker", "docker-compose", "linux"]
|
2025-03-26 13:41:10 +03:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Rocket Science',
|
|
|
|
|
body: 'Discover how rocket are work.',
|
|
|
|
|
publish: '2023-09-25',
|
|
|
|
|
get_absolute_url: '/blog/rocket-science',
|
2025-03-26 13:48:55 +03:00
|
|
|
tags: ["rocket", "space", "engineering"]
|
2025-03-26 13:41:10 +03:00
|
|
|
},
|
2025-03-01 07:35:06 +03:00
|
|
|
];
|
2025-03-01 06:33:09 +03:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
2025-03-26 14:17:58 +03:00
|
|
|
<main>
|
|
|
|
|
<BlogArea blogposts={blogposts} />
|
|
|
|
|
</main>
|
2025-03-01 06:33:09 +03:00
|
|
|
);
|
|
|
|
|
}
|