Useful Links
+-
+
- + + NullShift.xyz + + +
- + + GitHub + + +
- + + Next.js Documentation + + +
- + + React Official Website + + +
- + + TailwindCSS Documentation + + +
diff --git a/src/pages/links.tsx b/src/pages/links.tsx new file mode 100644 index 0000000..44174ee --- /dev/null +++ b/src/pages/links.tsx @@ -0,0 +1,100 @@ +import React, { useState } from 'react'; +import Head from 'next/head'; +import Link from 'next/link'; + +const LinksPage: React.FC = () => { + const [isAuthenticated, setIsAuthenticated] = useState(false); + const [password, setPassword] = useState(''); + + const handleLogin = () => { + if (password === 'nullshiftrules') { + setIsAuthenticated(true); + } else { + alert('Incorrect password!'); + } + }; + + if (!isAuthenticated) { + return ( +
+ Welcome to NullShift! These terms and conditions outline the rules and regulations for the use of our website. +
++ By accessing this website, you agree to comply with these terms and conditions. If you disagree with any part of these terms, please do not use our website. +
++ The content on this website is for general information and use only. It is subject to change without notice. +
++ The website and its content are owned by NullShift and protected by intellectual property laws. +
++ NullShift is not responsible for any errors or omissions, or for the results obtained from the use of this information. +
++ If you have any questions about these Terms and Conditions, please contact us at support@nullshift.xyz. +
+