This commit is contained in:
2024-09-23 17:35:17 +05:30
parent 3af994c1a3
commit 322c92982d
24 changed files with 603 additions and 125 deletions

10
src/app/about-us/page.tsx Normal file
View File

@ -0,0 +1,10 @@
export default function AboutUsPage() {
return (
<div className="p-8">
<h1 className="text-4xl font-bold">About Us</h1>
<p className="mt-4 text-lg">
Kakawa is a fictional company that delivers high-quality content through modern web technologies.
</p>
</div>
);
}