first commit

This commit is contained in:
Dimas Vindyawan
2025-12-30 14:34:03 +07:00
commit 6c3af6a820
255 changed files with 40351 additions and 0 deletions

27
src/app/forbidden/page.js Normal file
View File

@@ -0,0 +1,27 @@
"use server";
import React from "react";
import styles from "@/app/forbidden/forbidden.module.css";
import { EB_Garamond } from "next/font/google";
const ebGaramond = EB_Garamond({
variable: "--font-eb-garamond",
weight: ["400", "500", "600", "700", "800"],
subsets: ["latin"],
});
const Forbidden = async () => {
return (
<div className={`${styles.container} ${ebGaramond.className}`}>
<div className={styles.error}>
<h1 className={styles.code}>403</h1>
<span className={styles.line}></span>
<p className={styles.message}>Forbidden</p>
<p>You do not have permission to access this page.</p>
</div>
</div>
);
};
export default Forbidden;