summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoshanCyriac <roshancyriac.k@gmail.com>2025-07-09 17:49:37 +0530
committerRoshanCyriac <roshancyriac.k@gmail.com>2025-07-09 17:49:37 +0530
commit430d15f91f67cbd9badeb72e2a28e9a2912ed3d4 (patch)
treefdc39a32729bb95e1d66593b16d60008b3e51833
parent9e2087f2f8ea189738cb58f52dde587ae3ea230d (diff)
terminalHEADmaster
-rw-r--r--src/pages/Home.jsx37
1 files changed, 36 insertions, 1 deletions
diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx
index 51acb03..24c3396 100644
--- a/src/pages/Home.jsx
+++ b/src/pages/Home.jsx
@@ -28,7 +28,6 @@ const Home = () => {
<div className="ascii-art mb-8 floating">
{asciiArt}
</div>
-
<h1 className="text-4xl md:text-6xl font-bold mb-6 scroll-fade-in">
<span className="text-green neon-glow-green">FOSS CUSAT</span>
<br />
@@ -50,6 +49,42 @@ const Home = () => {
</motion.div>
</div>
</section>
+
+ {/* FOSS CUSAT About Section */}
+ <section className="max-w-2xl mx-auto mb-8 px-4">
+ <div className="bg-[#181f2a] rounded-lg shadow-lg p-6 text-center">
+ <h2 className="text-2xl font-bold text-green mb-2">About FOSS CUSAT</h2>
+ <p className="text-white text-lg">
+ FOSS CUSAT is a vibrant student community at Cochin University of Science and Technology dedicated to promoting Free and Open Source Software (FOSS) culture. We organize workshops, hackathons, and collaborative projects to empower students with open source skills, foster innovation, and contribute to the global FOSS movement. Join us to learn, build, and make a difference!
+ </p>
+ </div>
+ </section>
+
+ {/* Moving Marquee Bar */}
+ <div style={{ width: '100%', overflow: 'hidden', marginBottom: '2rem' }}>
+ <div
+ style={{
+ display: 'inline-block',
+ whiteSpace: 'nowrap',
+ animation: 'marquee 18s linear infinite',
+ color: '#111',
+ fontWeight: 'bold',
+ fontSize: '1.2rem',
+ letterSpacing: '1px',
+ padding: '0.5rem 0',
+ textShadow: '0 1px 8px #fff',
+ }}
+ >
+ 🚀 FOSS CUSAT: Empowering students with open source skills | Join our workshops, hackathons, and projects | Connect, Learn, Build, and Contribute! 🚀
+ </div>
+ </div>
+ <style>{`
+ @keyframes marquee {
+ 0% { transform: translateX(100%); }
+ 100% { transform: translateX(-100%); }
+ }
+ `}</style>
+
<Terminal />
</div>
);