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
10 changes: 5 additions & 5 deletions src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function Navbar() {

{/* NAVBAR */}

<div className="rounded-3xl shrink-0 bg-[#1C1C1C] w-[22rem] sm:w-[22rem] h-[2rem] sm:h-[4rem] md:mx-0 mx-auto overflow-hidden flex flex-row py-[1.5rem] px-[2rem] box-border items-center justify-center text-[1rem] text-[inherit]">
<div className="rounded-3xl shrink-0 bg-[#1C1C1C] w-auto h-[3rem] sm:h-[4rem] px-6 flex flex-row items-center justify-center gap-6">
<div className="flex flex-row items-center justify-center gap-[1rem]">
<div className=" h-[1.25rem] flex flex-col items-center justify-start gap-[0.25rem] text-[inherit]">
<Link href='/'className="relative text-sm leading-[1.3rem] text-[#777777] hover:text-white font-semibold">Home</Link>
Expand All @@ -47,12 +47,12 @@ export default function Navbar() {
<Link href='/team'className="[text-decoration:none] relative text-sm leading-[1.3rem] font-semibold text-[#777777] hover:text-white">
Team
</Link>
{/* <div className=" flex flex-row items-center justify-start text-[0.88rem]">
<div className=" bg-[#A523AA] rounded-2xl h-[2rem] flex flex-row py-[0.25rem] px-[0.75rem] items-center justify-center">
<Link href='/hiring' className=" text-white font-serif text-[0.4rem] md:text-[0.65rem] text-center">We Are Hiring!
<div className=" flex flex-row items-center justify-start text-[0.88rem]">
<div className="bg-[#A523AA] rounded-2xl h-[2rem] flex flex-row px-3 items-center justify-center">
<Link href='/hiring' className=" text-white text-xs md:text-sm text-center whitespace-nowrap">We Are Hiring!
</Link>
</div>
</div> */}
</div>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/WeAreHiring.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function WeAreHiring(props) {
</div>
</div>
<div className='text-xl text-cyan-500 ml-12 font-[Inter] hover:text-cyan-400'>
<a href='https://forms.office.com/r/X4mxHugR6X'>Link to Apply &#8594;</a>
<a href='https://forms.gle/FxEGsChpGrc34CPD6'>Link to Apply &#8594;</a>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/hiring/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function getStaticProps() {
const ExperienceData = await getExperienceData()

return {
notFound: true, // 404 not found
// notFound: true, // 404 not found
props: { hiringCardData, ExperienceData }
}
}
Expand Down
19 changes: 13 additions & 6 deletions src/pages/resources/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,42 +15,49 @@ const Resources_Data = [
img: "/swc/flutter.png",
description:
" An open-source UI toolkit by Google for creating natively compiled applications across mobile, web, and desktop from a single codebase.",
link:"https://swciitg.notion.site/Flutter-Hackstack-2024-6274025e81d64ac591a38e1ccc034b81?pvs=25",
link:"https://linktr.ee/HackStackflutter",
},
{
name: "HTML, CSS, JavaScript",
img: "/swc/html.png",
description:
"The foundational trinity of web development: HTML for structure, CSS for styling, and JavaScript for interactivity.",
link:"https://swciitg.notion.site/HackStack-24-HTML-CSS-JavaScript-036b384a13cf4e90a3c786071c3abf31?pvs=25",
link:"https://tinyurl.com/hackstack-25",
},
{
name: "ReactJs",
img: "/swc/react.png",
description:
" A JavaScript library by Facebook for building dynamic user interfaces, emphasizing component-based architecture and efficient rendering.",
link:"https://swciitg.notion.site/React-Hackstack-2024-b4fee56832de4347aad9c6f182a642cb?pvs=25",
link:"https://sun-suggestion-564.notion.site/HeackStack25-ReactWorkShop-1f90dde15273803caba1dd6e438ae039?source=copy_link",
},
{
name: "NodeJs",
img: "/swc/node.png",
description:
" A server-side runtime for executing JavaScript, renowned for its non-blocking, event-driven architecture and scalability.",
link:"https://swciitg.notion.site/Node-js-Workshop-2024-299346a043124e8f861afe067cdec323?pvs=25",
link:"https://www.notion.so/Node-js-Workshop-2025-1f979e7e67d380f7a12cd987fd73de0b?source=copy_link",
},
{
name: "Django",
img: "/swc/django.png",
description:
" A high-level Python web framework, renowned for its rapid development, built-in features, and scalability.",
link:"https://swciitg.notion.site/Django-Hackstack-2024-8f4115ccfbf44bcd9b7898c7c0c75550?pvs=25",
link:"https://sprinkle-curio-a28.notion.site/Django-HackStack-2025-21443139e33d8028b76ec806e164f1bc",
},
{
name: "UI/UX",
img: "/swc/figma.png",
description:
" UI (User Interface) focuses on design and the aesthetics of a product, while UX (User Experience) emphasizes its functionality and the overall experience of the user.",
link:"https://swciitg.notion.site/UI-UX-Workshop-a4acd98e599946fa8c5ee1f478dba276?pvs=25",
link:"https://obvious-subway-33b.notion.site/Hackstack-UI-UX-Workshop-20cf46435438803082bbe5e37d603da8?source=copy_link",
},
{
name: "Viscom",
img: "/swc/viscom.svg",
description:
" The art of crafting visual narratives through images, metaphors, and design — focused on clarity, storytelling, and intent.",
link:"https://screeching-belief-78d.notion.site/Visual-Communication-Design-1b36678d35d6806cb4a8db788c0cbb57",
},
]

Expand Down