Skip to content

Commit

Permalink
style(about): Improve About page styling
Browse files Browse the repository at this point in the history
- Enhanced typography and spacing for better readability.
- Updated color scheme for headers and text.
- Improved layout for sections and map component.
  • Loading branch information
TKanX committed Nov 29, 2024
1 parent c2c23e5 commit 643152d
Showing 1 changed file with 67 additions and 48 deletions.
115 changes: 67 additions & 48 deletions pages/about.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,55 +8,74 @@ import Map from '../components/map';

export default function AboutPage() {
return (
<div className='bg-light-500 py-12'>
<div className='max-w-6xl mx-auto px-6'>
{/* Section 1: Introduction */}
<section className='mb-12'>
<h1 className='text-3xl font-semibold text-primary-300 mb-4'>
About Cloud Coders
</h1>
<p className='text-lg text-light-800 mb-6'>
Cloud Coders is a student-led organization at Maranatha High School
focused on helping students learn programming and providing
resources and opportunities to grow in technology. Our goal is to
create an inclusive environment where students can develop their
coding skills, collaborate with peers, and engage in tech-related
activities.
</p>
<p className='text-lg text-light-800 mb-6'>
We participate in various exciting challenges and competitions,
including the Congressional App Challenge, USACO, hackathons, and
events hosted by HackClub. Cloud Coders welcomes all students,
whether you have prior coding experience or not. Everyone has a
place in our community.
</p>
<p className='text-lg text-light-800 mb-6'>
Our members take on different roles, from management and planning to
hands-on development. Together, we work towards making programming
accessible and enjoyable for everyone at Maranatha High School.
</p>
{/* Contact Link */}
<div className='mt-8 hover:text-primary-500'>
<Link
href='/contact'
className='text-lg text-primary-300 hover:text-primary-500'
>
Contact Us
</Link>
</div>
</section>
<div className='p-8'>
{/* Page Header */}
<h1 className='text-3xl font-bold mb-6 text-primary'>
About Cloud Coders
</h1>
<p className='text-md mb-8 text-gray-700'>
Cloud Coders is a student-led organization at Maranatha High School
focused on empowering students to learn programming and explore the
world of technology. Our mission is to create an inclusive environment
where students of all experience levels can develop their coding skills,
collaborate with peers, and engage in tech-driven activities.
</p>

{/* Section 2: Interactive Map */}
<section>
<h2 className='text-2xl font-semibold text-primary-300 mb-4'>
Find Us at Maranatha High School
</h2>
<div className='mb-6'>
{/* Map is only rendered on the client-side */}
<Map />
</div>
</section>
</div>
{/* Section: Goals and Activities */}
<section className='mb-12'>
<h2 className='text-2xl font-semibold text-primary mb-4'>What We Do</h2>
<p className='text-md mb-4 text-gray-700'>
We participate in various challenges and competitions, including the
Congressional App Challenge, USACO, hackathons, and events hosted by
HackClub. Cloud Coders welcomes all students, whether you're just
starting or already have programming experience. Our activities are
designed to be engaging and educational, fostering a sense of
community and collaboration.
</p>
<p className='text-md mb-4 text-gray-700'>
Members take on diverse roles, from management and planning to
hands-on development. Together, we strive to make programming
accessible and enjoyable for everyone at Maranatha High School.
</p>
<p className='text-md mb-4 text-gray-700'>
If you're looking for a place to grow your coding skills, collaborate
on exciting projects, or simply meet like-minded peers, Cloud Coders
is the community for you.
</p>
</section>

{/* Section: Contact */}
<section className='mb-12'>
<h2 className='text-2xl font-semibold text-primary mb-4'>
Get in Touch
</h2>
<p className='text-md mb-4 text-gray-700'>
Have questions or want to learn more? Visit our contact page to find
out how to reach us.
</p>
<Link
href='/contact'
className='inline-block text-accent hover:text-accent-600 transition font-semibold'
>
Contact Us &rarr;
</Link>
</section>

{/* Section: Location */}
<section className='mb-12'>
<h2 className='text-2xl font-semibold text-primary mb-4'>
Visit Us at Maranatha High School
</h2>
<p className='text-md text-gray-700 mb-6'>
<strong>169 S St John Ave, Pasadena, CA 91105</strong>.
</p>
<div className='w-full h-96'>
<Map
address='169 S St John Ave, Pasadena, CA 91105'
coordinates={{ lat: 34.14349, lng: -118.16476 }}
/>
</div>
</section>
</div>
);
}

0 comments on commit 643152d

Please sign in to comment.