+
+
);
diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx
new file mode 100644
index 0000000..3b70412
--- /dev/null
+++ b/src/app/privacy/page.tsx
@@ -0,0 +1,16 @@
+import type { Metadata } from "next";
+
+import PrivacyPolicy from "@/components/texts/privacy-policy.mdx"
+import { SimpleArticle } from "@/components/page-template";
+
+export const metadata: Metadata = {
+ title: "Privacy Policy",
+};
+
+export default function Terms () {
+ return (
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx
new file mode 100644
index 0000000..6d607d1
--- /dev/null
+++ b/src/app/terms/page.tsx
@@ -0,0 +1,16 @@
+import type { Metadata } from "next";
+
+import TermsAndConditions from "@/components/texts/terms-and-condition.mdx"
+import { SimpleArticle } from "@/components/page-template";
+
+export const metadata: Metadata = {
+ title: "Terms and conditions",
+};
+
+export default function Terms () {
+ return (
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/components/button.tsx b/src/components/button.tsx
new file mode 100644
index 0000000..fd601c5
--- /dev/null
+++ b/src/components/button.tsx
@@ -0,0 +1,13 @@
+import clsx from "clsx"
+
+export function ButtonPrimary({
+ className,
+ ...props
+}: React.ComponentProps<"button">) {
+ return (
+
+ )
+}
\ No newline at end of file
diff --git a/src/components/home-text.mdx b/src/components/home-text.mdx
index 9b5c402..173beb5 100644
--- a/src/components/home-text.mdx
+++ b/src/components/home-text.mdx
@@ -11,7 +11,7 @@ We've got tools and resources for us but some we provide it for you, stuff that
(
-
+ (
+
+
+
+
+
+ Back
+
+
+
+ {children}
+
+
+
+)
\ No newline at end of file
diff --git a/src/components/texts/privacy-policy.mdx b/src/components/texts/privacy-policy.mdx
new file mode 100644
index 0000000..bf797be
--- /dev/null
+++ b/src/components/texts/privacy-policy.mdx
@@ -0,0 +1,3 @@
+# Privacy Policy
+
+This website ("nonszy.space") fully respects the privacy of its visitors. This document explains how we handle visitor information. The short answer is: **we do not collect, track, or store your personal information**.
\ No newline at end of file
diff --git a/src/components/texts/terms-and-condition.mdx b/src/components/texts/terms-and-condition.mdx
new file mode 100644
index 0000000..4bc5eb4
--- /dev/null
+++ b/src/components/texts/terms-and-condition.mdx
@@ -0,0 +1,46 @@
+# Terms and Conditions
+
+## 1. Acceptance of Terms
+
+By accessing and using this website (“nonszy.space”), you agree to be bound by these Terms and Conditions. If you do not agree with any part of these Terms and Conditions, you are advised not to use this Site.
+
+## 2. Third Party Intellectual Property Rights
+
+Some materials on this Site, **such as the Coral Glasses character, or the ENA Dream BBQ game and ENA Series, are the property of JoelG** and are used under fair use. The Site owner does not claim any rights to these materials. All copyrights and trademarks remain the property of their respective owners.
+
+## 3. Content Ownership and Copyright
+
+Some materials on this Site, including but not limited to **applications, code, digital works, 2D illustrations, 3D works, designs, and OC (Original Characters) such as Nola, that owned by the site owner**, are protected by copyright and intellectual property rights in accordance with applicable laws and regulations.
+
+- Content may only be used for personal and non-commercial purposes unless written permission is obtained.
+- It is prohibited to reproduce, modify, distribute, sell, or utilize the content on this Site for commercial purposes without written permission.
+
+## 4. Prohibited Uses for AI Training
+
+All content on this Site is **strictly prohibited from being used for training, developing, or improving artificial intelligence (AI) models**, including but not limited to:
+
+- Machine learning, deep learning, or AI datasets in any form.
+- Third-party services that collect data for the purpose of training AI models.
+- Platforms or automated systems that copy, archive, or process content for AI analysis.
+
+Any violation of these terms may be subject to legal action in accordance with applicable copyright and intellectual property laws.
+
+## 5. User Responsibility
+
+Users are prohibited from:
+
+- Hacking, data mining, or other actions that may harm the Site.
+- Uploading or distributing harmful material, including malware or illegal content.
+- Using the Site to violate applicable laws or regulations.
+
+## 6. External Links
+
+This Site may contain links to third-party sites. The Site owner is not responsible for the content, policies, or practices of such external sites.
+
+## 7. Disclaimer
+
+The Site is provided “as is” without warranty of any kind. The Site owner is not responsible for any direct or indirect losses resulting from the use of the Site.
+
+## 8. Changes to Terms and Conditions
+
+These Terms and Conditions are subject to change at any time without prior notice. The latest version will be published on this page and will be effective from the date of publication.
\ No newline at end of file
diff --git a/src/components/windows.tsx b/src/components/windows.tsx
index a1adc87..c7c418a 100644
--- a/src/components/windows.tsx
+++ b/src/components/windows.tsx
@@ -8,19 +8,23 @@ export const FakeWindow = ({
children: React.ReactNode
}) => (