Skip to content

Commit

Permalink
random fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeeptosarkar committed Oct 13, 2024
1 parent 80f8e07 commit c8ff4df
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 27 deletions.
4 changes: 2 additions & 2 deletions src/Pages/Achievements/Achievements.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { achievements } from "../../constants/achievementConstants";

const Achievements = () => {
return (
<div className="bg-blue-1000 text-white min-h-screen p-8">
<div className="bg-blue-1000 text-white min-h-screen p-20">

<h2 className="text-3xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-yellow-200 sm:text-4xl lg:text-5xl mt-16 items-center text-center">
OUR ACHIEVERS
Our Achievers
</h2>

<p className="max-w-2xl px-3 mx-auto my-10 text-center flex justify-center items-center text-xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-amber-500 to-pink-500">
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/AllTeams/AllTeams.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function AllTeams() {
<Container>
<div className=" px-6 py-10 ">
<h2 className="text-3xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-yellow-200 sm:text-4xl lg:text-5xl text-center">
OUR TEAM
Our Team
</h2>

<p className="max-w-2xl mx-auto my-10 text-center text-xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-amber-500 to-pink-500 ">
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Programs/Programs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function Programs() {
<div className="max-w-2xl mx-auto text-center">
<h2 className="text-3xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-yellow-200 sm:text-4xl lg:text-5xl">

INTERNAL PROGRAM
Internal Programs
</h2>
<br></br>
<p className="text-xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-amber-500 to-pink-500 " >
Expand Down
6 changes: 2 additions & 4 deletions src/Pages/Projects/Projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ const Section = styled.div`
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
justify-content: space-between;
min-height: 100vh; /* Set minimum height to 100% of the viewport height */
background-color: #010116;
`;

Expand All @@ -35,9 +33,9 @@ function Projects() {
<>
<Section>
<Container>
<div>
<div className="p-12">
<h1 className="text-3xl font-bold leading-tight text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-yellow-200 sm:text-4xl lg:text-5xl text-center">
PROJECTS
Projects
</h1>


Expand Down
44 changes: 25 additions & 19 deletions src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const NavbarLinkContainer = styled.div`

const NavLinks = styled.div`
display: flex;
gap: 20px;
gap: 15px;
`;

const NavbarLink = styled(Link)`
Expand Down Expand Up @@ -270,6 +270,14 @@ function Navbar() {
)}
</div>
</NavbarLink>
<NavbarLink
to="https://namespacecomm.substack.com/"
target="_blank"
without
rel="noreferrer"
>
<div>Newsletter</div>
</NavbarLink>
<NavbarLink
to="/team"
className={activeNavLink === "/team" ? "active" : ""}
Expand Down Expand Up @@ -303,24 +311,6 @@ function Navbar() {
)}
</div>
</NavbarLink>
<NavbarLink
to="http://blog.namespacecomm.in/"
target="_blank"
without
rel="noreferrer"
className={
activeNavLink === "/http://blog.namespacecomm.in/"
? "active"
: ""
}
>
<div>
Blog
{activeNavLink === "/http://blog.namespacecomm.in/" && (
<hr className="border-3 rounded-full" />
)}
</div>
</NavbarLink>
<NavbarLink
to="#"
className={activeNavLink === "/partners" ? "active" : ""}
Expand All @@ -345,6 +335,14 @@ function Navbar() {
</DropdownItem>
</DropdownMenu>
</NavbarLink>
<NavbarLink
to="http://blog.namespacecomm.in/"
target="_blank"
without
rel="noreferrer"
>
<div>Blog</div>
</NavbarLink>

{/* <NavbarLink
to="/CodingChallenge"
Expand Down Expand Up @@ -381,6 +379,14 @@ function Navbar() {
<NavbarLinkExtended to="/projects">Projects</NavbarLinkExtended>
<NavbarLinkExtended to="/events">Events</NavbarLinkExtended>
<NavbarLinkExtended to="/programs">Programs</NavbarLinkExtended>
<NavbarLinkExtended
to="https://namespacecomm.substack.com/"
target="_blank"
without
rel="noreferrer">
Newsletter
</NavbarLinkExtended>

<NavbarLinkExtended to="/team">Team</NavbarLinkExtended>
<NavbarLinkExtended to="/resources">Resources</NavbarLinkExtended>
<NavbarLinkExtended to="/techx">TechXcelerate</NavbarLinkExtended>
Expand Down

0 comments on commit c8ff4df

Please sign in to comment.