Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
Bookie0 committed Mar 3, 2025
1 parent 9db728f commit b60114c
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 33 deletions.
38 changes: 17 additions & 21 deletions new-dti-website/src/app/apply/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,33 +14,29 @@ const ApplyHero = () => {
const isApplicationOpen = isAppOpen();

return (
<section
id="Apply Hero"
className="text-[#FEFEFE] min-h-[calc(100vh-136px)] flex items-center relative"
>
<section id="Apply Hero" className="text-[#FEFEFE] flex items-center relative">
{!isApplicationOpen && (
<Banner
message={`We're no longer accepting applications for ${config.semester}. Stay tuned for opportunities next semester!`}
variant={'accent'}
/>
)}

<Hero
title={'Join our community'}
description={
"We strive for inclusivity, and encourage passionate applicants to apply regardless of experience. We'd love to work with someone like you."
}
image={{
src: '/images/apply-hero.png',
alt: 'TODO'
}}
action={{
buttonText: 'Apply now',
link: config.applicationLink
}}
/>

<div className="relative"></div>
<div className="flex items-center pt-12 w-[100%]">
<Hero
title={'Join our community'}
description={
"We strive for inclusivity, and encourage passionate applicants to apply regardless of experience. We'd love to work with someone like you."
}
image={{
src: '/images/apply-hero.png',
alt: 'TODO'
}}
action={{
buttonText: 'Apply now',
link: config.applicationLink
}}
/>
</div>
</section>
);
};
Expand Down
22 changes: 12 additions & 10 deletions new-dti-website/src/app/course/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,18 @@ export default function Courses() {
setSelectedMember(undefined);
}}
>
<Hero
title={'Our course'}
description={
'A project team is meant, above all, to be a learning experience. Given our mission of community impact, we want to help everyone learn and grow through our training course in product development.'
}
image={{
src: '/images/course-hero.png',
alt: 'TODO'
}}
/>
<div className="pb-24">
<Hero
title={'Our course'}
description={
'A project team is meant, above all, to be a learning experience. Given our mission of community impact, we want to help everyone learn and grow through our training course in product development.'
}
image={{
src: '/images/course-hero.png',
alt: 'TODO'
}}
/>
</div>

{/* WRAPPER */}
<div
Expand Down
2 changes: 1 addition & 1 deletion new-dti-website/src/app/initiatives/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const InitiativePage = () => {
useTitle('Initiatives');
return (
<div className="bg-white flex flex-col">
<div className="bg-[#000000]">
<div className="bg-[#000000] pb-24">
<Hero
title={'Inspiring innovation'}
description={
Expand Down
2 changes: 1 addition & 1 deletion new-dti-website/src/app/sponsor/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { impacts } = impactData;
const { companies } = companyData;

const SponsorHero = () => (
<div className="bg-black text-white min-h-[calc(100vh-300px)] flex items-center w-full overflow-hidden">
<div className="bg-black text-white min-h-[calc(100vh-300px)] pb-24 flex items-center w-full overflow-hidden">
<Hero
title={'Support our team'}
description={
Expand Down

0 comments on commit b60114c

Please sign in to comment.