This commit is contained in:
2025-11-06 01:40:00 +01:00
parent de5f54f4bc
commit 602c5a40f1
108 changed files with 9859 additions and 1382 deletions

View File

@@ -0,0 +1,26 @@
import React from 'react';
import Header from '../components/Header';
import Footer from '../components/Footer';
const Blog: React.FC = () => {
return (
<div className="min-h-screen">
<Header />
<main className="py-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="text-center">
<h1 className="text-4xl font-bold text-slate-800 sm:text-5xl">
Blog
</h1>
<p className="mt-4 text-lg text-slate-600 max-w-2xl mx-auto">
Ask Meku to generate content for this page.
</p>
</div>
</div>
</main>
<Footer />
</div>
);
};
export default Blog;