|
| 1 | +<template> |
| 2 | + <div class="min-h-screen bg-white dark:bg-gray-900 text-gray-800 dark:text-gray-200 transition-colors duration-300 ease-in-out"> |
| 3 | + <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 duration-300 ease-in-out"> |
| 4 | + <h1 class="text-4xl text-center font-bold mb-8 text-blue-600 dark:text-blue-400">About This Website</h1> |
| 5 | + |
| 6 | + <!-- Header Section --> |
| 7 | + <UniversityHero /> |
| 8 | + |
| 9 | + <!-- Introduction --> |
| 10 | + <section class="mb-12"> |
| 11 | + <h2 class="text-2xl font-semibold mb-4 text-indigo-600 dark:text-indigo-300">Purpose & Vision</h2> |
| 12 | + <p class="leading-relaxed text-gray-800 dark:text-gray-300 mb-4"> |
| 13 | + This site is designed to provide a clear and interactive introduction to |
| 14 | + <strong class="dark:text-white">Number Theory</strong> and its applications in |
| 15 | + <strong class="dark:text-white">Cryptography</strong>. Whether you're a student, a hobbyist, or just curious, |
| 16 | + our goal is to make complex mathematical ideas understandable and engaging. |
| 17 | + </p> |
| 18 | + |
| 19 | + <div class="bg-blue-50 dark:bg-blue-900/20 border-l-4 border-blue-500 p-4 rounded"> |
| 20 | + <h3 class="font-semibold mb-2 text-blue-800 dark:text-blue-300">What You'll Learn:</h3> |
| 21 | + <ul class="list-disc list-inside text-gray-700 dark:text-gray-400 space-y-1"> |
| 22 | + <li>Basic Number Theory concepts</li> |
| 23 | + <li>How prime numbers work</li> |
| 24 | + <li>Modular arithmetic and congruence</li> |
| 25 | + <li>GCD, LCM, and algorithms like Euclidean algorithm</li> |
| 26 | + <li>Applications in real-world cryptography</li> |
| 27 | + </ul> |
| 28 | + </div> |
| 29 | + </section> |
| 30 | + |
| 31 | + <!-- Technologies --> |
| 32 | + <section class="mb-12"> |
| 33 | + <h2 class="text-2xl font-semibold mb-4 text-indigo-600 dark:text-indigo-300">Technologies Used</h2> |
| 34 | + <div class="grid md:grid-cols-2 gap-6"> |
| 35 | + <div class="bg-green-50 dark:bg-green-900/20 border-l-4 border-green-500 p-4 rounded"> |
| 36 | + <h3 class="font-semibold mb-2 text-green-800 dark:text-green-300">Frontend</h3> |
| 37 | + <ul class="list-disc list-inside text-sm text-gray-700 dark:text-gray-400 space-y-1"> |
| 38 | + <li>Vue.js for reactive UI</li> |
| 39 | + <li>Tailwind CSS for modern styling and dark mode</li> |
| 40 | + </ul> |
| 41 | + </div> |
| 42 | + <div class="bg-yellow-50 dark:bg-yellow-900/20 border-l-4 border-yellow-500 p-4 rounded"> |
| 43 | + <h3 class="font-semibold mb-2 text-yellow-800 dark:text-yellow-300">Features</h3> |
| 44 | + <ul class="list-disc list-inside text-sm text-gray-700 dark:text-gray-400 space-y-1"> |
| 45 | + <li>Dark/light theme switching</li> |
| 46 | + <li>Responsive layout for desktop and mobile</li> |
| 47 | + <li>Interactive number theory tools</li> |
| 48 | + </ul> |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + </section> |
| 52 | + |
| 53 | + <!-- Author Info --> |
| 54 | + <section class="mb-12"> |
| 55 | + <h2 class="text-2xl font-semibold mb-4 text-indigo-600 dark:text-indigo-300">About the Creator</h2> |
| 56 | + <div class="bg-purple-50 dark:bg-purple-900/20 border-l-4 border-purple-500 p-4 rounded"> |
| 57 | + <p class="leading-relaxed text-gray-800 dark:text-gray-300"> |
| 58 | + Hi! I'm <strong class="dark:text-white">Rathanak Phan</strong>, a second-year Information Technology Engineering student at the |
| 59 | + <strong class="dark:text-white">Royal University of Phnom Penh</strong>. I created this website as a way to explore the |
| 60 | + mathematical foundations of cryptography while learning modern web development with Vue.js. |
| 61 | + </p> |
| 62 | + <p class="mt-3 text-sm text-gray-700 dark:text-gray-400"> |
| 63 | + I hope this site inspires you to dive deeper into the beauty of mathematics and its role in technology! |
| 64 | + </p> |
| 65 | + </div> |
| 66 | + </section> |
| 67 | + |
| 68 | + <!-- Closing --> |
| 69 | + <section class="text-center"> |
| 70 | + <p class="text-gray-700 dark:text-gray-400"> |
| 71 | + Thank you for visiting. Stay curious, and keep exploring! |
| 72 | + </p> |
| 73 | + </section> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | +</template> |
| 77 | + |
| 78 | +<script> |
| 79 | + import UniversityHero from '../components/UniversityHero.vue'; |
| 80 | +
|
| 81 | + export default { |
| 82 | + name: "About", |
| 83 | + components: { |
| 84 | + UniversityHero |
| 85 | + }, |
| 86 | + mounted() { |
| 87 | + document.title = "About | Number Theory Fundamentals"; |
| 88 | + }, |
| 89 | + }; |
| 90 | +</script> |
0 commit comments