Skip to content

Commit 84a3ee2

Browse files
committed
chore: add bottom padding, add bruno ace font, run formatter
1 parent 1dad2b0 commit 84a3ee2

File tree

4 files changed

+100
-100
lines changed

4 files changed

+100
-100
lines changed

package-lock.json

Lines changed: 87 additions & 87 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/(site)/_components/landing-page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const LandingPage: React.FC<LandingPageProps> = (props) => {
5858
<Team team={teamData} />
5959
</div>
6060
</section>
61-
<section className="relative flex w-[100vw] flex-col items-center justify-start overflow-visible pb-40 font-normal md:pt-32 md:pb-24 md:text-md">
61+
<section className="relative flex w-[100vw] flex-col items-center justify-start overflow-hidden pb-32 font-normal md:pt-32 md:pb-24 md:text-md">
6262
<FAQBackgroundEffects />
6363
<div
6464
id="frequently-asked-questions"
@@ -84,7 +84,7 @@ const LandingPage: React.FC<LandingPageProps> = (props) => {
8484
<img
8585
src="/assets/footer/capyAstroid.svg"
8686
alt="astroid capybara"
87-
className="absolute bottom-[25rem] right-[4rem] h-[8rem] md:right-[7rem] md:h-[9rem] lg:bottom-[19rem] lg:right-[21rem] lg:h-[13rem] lg:w-auto"
87+
className="absolute bottom-[25rem] right-[4rem] h-[8rem] md:right-[7rem] md:h-[9rem] lg:bottom-[10rem] lg:right-[13rem] lg:h-[13rem] lg:w-auto"
8888
/>
8989

9090
{/* Satellite */}
@@ -148,7 +148,7 @@ const LandingPage: React.FC<LandingPageProps> = (props) => {
148148
<img
149149
src="/assets/footer/mobile/mobileStars.svg"
150150
alt="constellations"
151-
className="absolute bottom-[20rem] left-[-2rem] h-[35rem] w-full animate-pulse lg:hidden md:h-[50rem] md:bottom-[9rem] md:left-[-9rem]"
151+
className="absolute bottom-[20rem] left-[-2rem] h-[35rem] w-full animate-pulse md:bottom-[9rem] md:left-[-9rem] md:h-[50rem] lg:hidden"
152152
/>
153153
<LandingFooter />
154154
</section>

src/components/footer.tsx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import links from "@/lib/data/links.json";
66
export const LandingFooter: React.FC = () => {
77
return (
88
<>
9-
<div className="relative mt-[25rem] flex pt-80 lg:mt-[50rem]">
9+
<div className="relative mt-[10rem] flex pt-80 lg:mt-[30rem]">
1010
<div className="flex w-full flex-grow flex-col items-center">
1111
{/* Contact Us */}
1212
<div className="relative inline-block">
@@ -22,22 +22,20 @@ export const LandingFooter: React.FC = () => {
2222
</div>
2323
{/* email */}
2424
<p className="py-[1rem] pb-[3rem] font-bruno text-[1.5rem] font-normal md:text-[2rem] lg:pb-[4rem] lg:text-[2rem]">
25-
25+
{links.email}
2626
</p>
2727

2828
{/* Frame for icons */}
2929
<div className="flex flex-grow items-center justify-center gap-6 text-[#ECECEC]">
30-
<a
31-
target="_blank"
32-
href="https://www.linkedin.com/company/fullyhacks/">
30+
<a target="_blank" href={links.linkedin}>
3331
<BsLinkedin className="h-[2.75rem] w-12 md:h-14 md:w-14" />
3432
</a>
35-
<a target="_blank" href="https://discord.gg/3NvZKuQxJY">
33+
<a target="_blank" href={links.discord}>
3634
<BsDiscord className="h-[3rem] w-12 md:h-16 md:w-16" />
3735
</a>
3836
<div className="relative inline-block">
3937
{/* ACM text */}
40-
<a target="_blank" href="https://acmcsuf.com/">
38+
<a target="_blank" href={links.acmcsuf}>
4139
<img
4240
src="/assets/footer/capyACM.svg"
4341
alt="capybara ACM"
@@ -50,15 +48,15 @@ export const LandingFooter: React.FC = () => {
5048
/>
5149
</a>
5250
</div>
53-
<a target="_blank" href="https://www.instagram.com/fullyhacks/">
51+
<a target="_blank" href={links.instagram}>
5452
{<PiInstagramLogoFill className="h-12 w-12 md:h-16 md:w-16" />}
5553
</a>
5654
</div>
5755
</div>
5856
</div>
5957
{/* Footer Text */}
60-
<div className="bottom-0 w-full pt-10 text-center lg:hidden">
61-
<p className="text-sm text-gray-400 lg:hidden">
58+
<div className="bottom-0 w-full pt-10 text-center">
59+
<p className="text-sm text-gray-400">
6260
© 2025 FullyHacks. All Rights Reserved.
6361
</p>
6462
</div>

src/styles/globals.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Bruno+Ace&display=swap");
2+
13
@tailwind base;
24
@tailwind components;
35
@tailwind utilities;

0 commit comments

Comments
 (0)