dev #4

Merged
RizqiSyahrendra merged 4 commits from dev into main 2025-04-19 02:37:48 +00:00
Showing only changes of commit 931c71b400 - Show all commits

15
src/app/not-found.tsx Normal file
View File

@ -0,0 +1,15 @@
export default function NotFound() {
return (
<>
<section className="section section-md bg-default text-center">
<div className="container">
<h2 className="text-spacing-20">Page Not Found</h2>
<p className="heading-5">You may have mistyped the address or the page may have moved</p>
<a className="button button-primary" href="/">
Go to Homepage
</a>
</div>
</section>
</>
);
}