diff --git a/app/components/Navbar.tsx b/app/components/Navbar.tsx index 0497131..635b59c 100755 --- a/app/components/Navbar.tsx +++ b/app/components/Navbar.tsx @@ -21,6 +21,11 @@ const Navbar = () => { id: 3, text: "Hobbies", link: "hobbies" + }, + { + id: 4, + text: "Donate", + link: "donate" } ]; diff --git a/app/donate/page.tsx b/app/donate/page.tsx new file mode 100644 index 0000000..b8f92ba --- /dev/null +++ b/app/donate/page.tsx @@ -0,0 +1,49 @@ +import React, { useState, useEffect } from "react"; +import Link from 'next/link'; +import Photo from '../components/Photo' + +export default function Hobbies() { + return ( +
+
+
+
+

Donate

+

+ Want to help me run my WinsCloud Empire? Here are ways you can help support! +

+
+
+ +
+
+
+
+

OpenCollective

+

+ https://opencollective.com/winscloud +

+
+
+
+

Bank Transfer (Thai Citizens Only)

+

+ SCB: 433-1383337 +

+
+
+
+

Monero

+

+ + 467eMkLCwdxBEWsgtY5akKU6gEaN4V39T9sddoKhLv487c8HJ7SqaDSVhTCtVanhyihavuG8Fe3CkYFCAkzdJfChKBH4KYB + +

+
+
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/app/layout.tsx b/app/layout.tsx index 57446a3..150bb48 100755 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -20,7 +20,7 @@ export default function RootLayout({ }) { return ( - + {children}