Feat: added chakra ui

This commit is contained in:
2025-01-22 10:56:19 +03:00
parent f10881586a
commit ac4f0b0be8
18 changed files with 673 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
export default async function Post({ params }: { params: { slug: string } }) {
const { slug } = params;
return (
<div>
<h1>Post: {slug}</h1>
</div>
);
}

3
src/app/blog/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function Blog() {
return <h1>Blog</h1>;
}