Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sticky hols #999

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Binary file added public/sticky-holidays/day1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/app/harbor/signpost/signpost.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { motion } from 'framer-motion'
import Verification from './verification'
import Platforms from '@/app/utils/wakatime-setup/platforms'
import JaggedCard from '../../../components/jagged-card'
import JaggedCardSmall from '@/components/jagged-card-small'
import Cookies from 'js-cookie'
import FeedItems from './feed-items'
import { getWakaSessions } from '@/app/utils/waka'
Expand Down Expand Up @@ -135,6 +136,31 @@ export default function Signpost() {
)}
</JaggedCard>

<a
className="block mt-6 mb-2"
href="https://hackclub.slack.com/archives/C0266FRGT/p1734471796551819"
>
<img
className="mx-auto rounded w-1/2"
src="https://cloud-l35vudm4s-hack-club-bot.vercel.app/0sticky-holidays.png"
alt="sticky holidays banner"
/>
</a>

<div className="flex items-center justify-center gap-4 overflow-x-scroll">
<div className="w-fit h-fit">
<JaggedCard
shadow={false}
className="w-96 pb-16 h-full flex flex-col gap-2 justify-between items-center"
>
<p className="text-lg">Day 1</p>
<div className="h-40 mx-auto rounded">
<img src="/sticky-holidays/day1.png" alt="" className="w-64" />
</div>
</JaggedCard>
</div>
</div>

<BestShips />

<h2 className="mt-8 font-heading text-2xl font-bold mb-4 text-center">
Expand Down
Loading