diff --git a/src/app/page.tsx b/src/app/page.tsx index 8390b65..8fbac58 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,25 +10,28 @@ export default function Home() { return (
-
-

- Nonszy Workspace -

-
- - - -
- -
-
-

⚡ Powered with Cloudflare ☁️

-
-
-

© 2024-2025 Nomi Nonsense

-
+
+

+ Nonszy Workspace +

+
+ + + +
+ +
+
+

⚡ Powered with Cloudflare ☁️

+
+
); 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 ( + - +
+
+
+ {windowText}
- + +
+ + +
+
+
-
- {children} +
+
+ {children} +
) \ No newline at end of file