Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/AboutSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export default function AboutSection() {
{/* Text Content */}
<div className="w-full lg:w-1/2 space-y-8 text-center lg:text-left order-1 lg:order-2">
<div className="space-y-6">
<h2 className="text-4xl md:text-5xl font-bold text-[#021640] dark:text-white leading-tight tracking-tight">
<h2 className="text-4xl md:text-6xl font-extrabold text-[#021640] dark:text-white leading-tight tracking-wide">
{siteConfig.about.title}
</h2>
<p className="text-lg md:text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-2xl mx-auto lg:mx-0">
<p className="text-[22px] md:text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-2xl mx-auto lg:mx-0">
{siteConfig.about.description}
</p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Achievements.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export default function Achievements() {
{/* Header Section */}
<div className="text-center mb-16">
<div className="space-y-6">
<h2 className="text-4xl md:text-5xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
<h2 className="text-4xl md:text-5xl font-extrabold dark:text-white text-[#021640] leading-tight tracking-tight">
Our Achievements
</h2>
<p className="text-lg md:text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
<p className="text-lg md:text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
ASME NIT Rourkela excels in fostering innovation and leadership
through workshops, competitions, and expert lectures. Recognized
for achievements in events like the Student Design Challenge and
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Footer = ({
<li>
<Link
to="/gallery"
className="text-gray-300 hover:text-[#51B8F2] duration-200 text-sm sm:text-base inline-block hover:translate-x-1 transform transition-transform"
className="text-gray-300 hover:text-[#51B8F2] duration-200 font-extrabold text-sm sm:text-base inline-block hover:translate-x-1 transform transition-transform"
>
Gallery
</Link>
Expand Down
4 changes: 2 additions & 2 deletions src/components/GallerySection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export default function GallerySection() {
{/* Header Section */}
<div className="text-center mb-16">
<div className="space-y-6">
<h2 className="text-4xl sm:text-4xl md:text-5xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
<h2 className="text-4xl sm:text-4xl md:text-5xl font-extrabold dark:text-white text-[#021640] leading-tight tracking-tight">
Gallery
</h2>
<p className="text-lg md:text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
<p className="text-lg md:text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
Explore our vibrant moments captured through stunning visuals that
showcase our activities, achievements, and memorable experiences.
</p>
Expand Down
6 changes: 3 additions & 3 deletions src/components/HeroSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Button from "./shared/Button";
import { siteConfig } from "../config/navbarHero";

import { useNavigate } from "react-router-dom";

export default function HeroSection() {
const navigate = useNavigate();
const handleJoinUs = () => {
Expand All @@ -28,10 +28,10 @@ export default function HeroSection() {
<div className="inline-block px-4 py-2 dark:text-gray-100 dark:bg-slate-800 bg-[#021640]/10 text-[#021640] rounded-full text-sm md:text-base font-medium tracking-wide uppercase mt-10">
{siteConfig.hero.title}
</div>
<h1 className="text-5xl sm:text-5xl md:text-6xl lg:text-6xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
<h1 className="text-5xl sm:text-5xl md:text-7xl lg:text-8xl font-extrabold dark:text-white text-[#021640] leading-tight tracking-wide">
{siteConfig.hero.subtitle}
</h1>
<p className="text-xl md:text-[22px] dark:text-gray-300 text-gray-600 leading-relaxed md:leading-normal max-w-2xl mx-auto lg:mx-0">
<p className="text-xl md:text-2xl dark:text-gray-300 text-gray-600 leading-relaxed md:leading-normal max-w-2xl mx-auto lg:mx-0">
{siteConfig.hero.description}
</p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/MissionSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export default function MissionSection() {
<div className="relative z-10 max-w-7xl mx-auto px-6 lg:px-8">
{/* Section Header */}
<div className="text-center mb-16">
<h2 className="text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white mb-6 leading-tight">
<h2 className="text-4xl lg:text-5xl font-extrabold text-gray-900 dark:text-white mb-6 leading-tight">
Driving Innovation Forward
</h2>
<p className="text-lg lg:text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto leading-relaxed">
<p className="text-[22px] lg:text-2xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto leading-relaxed">
Discover the core values and principles that guide our engineering
community toward innovation, collaboration, and excellence in
technology.
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sponsor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const SponsorsSection = () => {
<h2 className="text-4xl md:text-5xl font-bold text-[#021640] dark:text-white leading-tight tracking-tight">
Our Trusted Partners
</h2>
<p className="text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
<p className="text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
Proudly supported by amazing organizations who believe in our
mission and help us drive innovation forward.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const TeamSlider = () => {
<h2 className="text-4xl sm:text-4xl md:text-5xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
Our Team
</h2>
<p className="text-lg md:text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
<p className="text-lg md:text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
Meet our amazing team members who drive innovation and excellence
in mechanical engineering through their dedication and expertise.
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Timeline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@ const Timeline = () => {
>
{/* Section Header */}
<div className="text-center mb-16">
<h2 className="text-4xl dark:text-white md:text-5xl font-bold text-[#0B2044] mb-6">
<h2 className="text-4xl dark:text-white md:text-5xl font-extrabold text-[#0B2044] mb-6">
Excellence Through Innovation
</h2>
<p className="text-lg md:text-xl dark:text-gray-300 text-gray-600 max-w-3xl mx-auto leading-relaxed">
<p className="text-lg md:text-2xl dark:text-gray-300 text-gray-600 max-w-3xl mx-auto leading-relaxed">
Discover our remarkable journey of achievements spanning over a
decade of engineering excellence, innovation, and competitive
success in mechanical engineering challenges worldwide.
Expand Down
4 changes: 2 additions & 2 deletions src/pages/applications/Applications.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ const Applications = () => {
{/* Header Section */}
<div className="text-center mb-16 pt-8">
<div className="space-y-6">
<h1 className="text-4xl sm:text-[42px] md:text-5xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
<h1 className="text-4xl sm:text-[42px] md:text-5xl font-extrabold dark:text-white text-[#021640] leading-tight tracking-tight">
Join Our Community
</h1>
<p className="text-lg md:text-xl dark:text-gray-300 text-gray-600 leading-relaxed max-w-4xl mx-auto">
<p className="text-lg md:text-2xl dark:text-gray-300 text-gray-600 leading-relaxed max-w-4xl mx-auto">
Begin your journey with ASME NIT Rourkela and become part of a
legacy of engineering excellence and innovation.
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/events/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ const Events = () => {
{/* Header Section */}
<div className="text-center mb-16 pt-8">
<div className="space-y-6">
<h1 className="text-4xl sm:text-[42px] md:text-5xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
<h1 className="text-4xl sm:text-[42px] md:text-5xl font-extrabold dark:text-white text-[#021640] leading-tight tracking-tight">
Our Events
</h1>
<p className="text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
<p className="text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
Discover our technical workshops, competitions, and networking
events designed to enhance your engineering journey and foster
innovation.
Expand Down
2 changes: 1 addition & 1 deletion src/pages/gallery/Gallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default function GallaryPage() {
))}
</div>
</div>
<p className="text-black-600 dark:text-gray-300 md:max-w-xl text-lg md:text-lg">
<p className="text-black-600 dark:text-gray-300 md:max-w-2xl text-lg md:text-lg">
Step into our visual storybook — where every image captures a
moment, every frame holds a memory, and every detail speaks of the
journey we’ve lived and the beauty we’ve created. Welcome to our
Expand Down
4 changes: 2 additions & 2 deletions src/pages/team/TeamPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ const TeamPage = () => {
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16 pt-8">
<div className="space-y-6">
<h1 className="text-4xl sm:text-[42px] md:text-5xl font-bold dark:text-white text-[#021640] leading-tight tracking-tight">
<h1 className="text-4xl sm:text-[42px] md:text-5xl font-extrabold dark:text-white text-[#021640] leading-tight tracking-tight">
Meet Our Team
</h1>
<p className="text-xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
<p className="text-2xl text-gray-600 dark:text-gray-300 leading-relaxed max-w-4xl mx-auto">
Discover the passionate individuals driving innovation and
excellence at ASME NIT Rourkela through their dedication and
expertise.
Expand Down