Skip to content

Commit

Permalink
2025 Week 1 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cherriae committed Jan 13, 2025
1 parent 3cef76b commit ec024d3
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 105 deletions.
2 changes: 1 addition & 1 deletion components/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Faq() {
},
{
question: "What does this robot do? Is this battlebots?",
answer: "This is NOT battlebots, as much as it would be cool to make our own battlebot, the robot we make year to year is a lot different. The purpose of our bot can change vastly, and its design by default. Check out how different competitions can be year to year with these links (insert 2024 and 2023 kickoff FIRST videos)",
answer: "This is NOT battlebots, as much as it would be cool to make our own battlebot, the robot we make year to year is a lot different. The purpose of our bot can change vastly, and its design by default",
},
{
question: "How much time do I have to dedicate to this?",
Expand Down
2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function App({ Component, pageProps }: AppProps) {
</div>
<footer className="relative w-full flex py-3 p-6 text-start border-t border-gray-800">
<div className="mb-10 secondary container items-start justify-start md:ml-12 gap-1 flex flex-col md:flex-row">
<span className="font-bold">©1998-2024</span>
<span className="font-bold">©1998-2025</span>
<p className="text-primary">TechKnights</p>
</div>
<Link
Expand Down
121 changes: 23 additions & 98 deletions pages/blog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,88 +25,13 @@ const BlogHome: React.FC<BlogHomeProps> = ({ posts }) => {
<h1 className="text-black mb-4">Week 1 Recap</h1>
<div className="h-[calc(100%-4rem)]">
<YouTubePlayer
videoId="vGIsE0y7tVQ"
videoId="T5QlrC06WXw"
loading="lazy"
/>
</div>
</div>
),
},
{
title: "Week 2",
value: "week2",
content: (
<div className="w-full relative h-full rounded-2xl p-6 md:p-10 text-xl md:text-4xl main font-bold bg-[#f2f2f2]">
<h1 className="text-black mb-4">Week 2 Recap</h1>
<div className="h-[calc(100%-4rem)]">
<YouTubePlayer
videoId="k9-qFX8pPWc"
loading="lazy"
/>
</div>
</div>
),
},
{
title: "Week 3",
value: "week3",
content: (
<div className="w-full relative h-full rounded-2xl p-6 md:p-10 text-xl md:text-4xl main font-bold bg-[#f2f2f2]">
<h1 className="text-black mb-4">Week 3 Recap</h1>
<div className="h-[calc(100%-4rem)]">
<YouTubePlayer
videoId="kMeeyb-l-0U"
loading="lazy"
/>
</div>
</div>
),
},
{
title: "Week 4",
value: "week4",
content: (
<div className="w-full relative h-full rounded-2xl p-6 md:p-10 text-xl md:text-4xl main font-bold bg-[#f2f2f2]">
<h1 className="text-black mb-4">Week 4 Recap</h1>
<div className="h-[calc(100%-4rem)]">
<YouTubePlayer
videoId="3xwtSjaZoUM"
loading="lazy"
/>
</div>
</div>
),
},
{
title: "Week 5",
value: "week5",
content: (
<div className="w-full relative h-full rounded-2xl p-6 md:p-10 text-xl md:text-4xl main font-bold bg-[#f2f2f2]">
<h1 className="text-black mb-4">Week 5 Recap</h1>
<div className="h-[calc(100%-4rem)]">
<YouTubePlayer
videoId="bjL-mn2fMTc"
loading="lazy"
/>
</div>
</div>
),
},
{
title: "Week 6",
value: "week6",
content: (
<div className="w-full relative h-full rounded-2xl p-6 md:p-10 text-xl md:text-4xl main font-bold bg-[#f2f2f2]">
<h1 className="text-black mb-4">Week 6 Recap</h1>
<div className="h-[calc(100%-4rem)]">
<YouTubePlayer
videoId="KSeID8Ug1Os"
loading="lazy"
/>
</div>
</div>
),
},
}
]

// Helper function to format dates consistently
Expand All @@ -120,6 +45,27 @@ const BlogHome: React.FC<BlogHomeProps> = ({ posts }) => {

return (
<div className="min-h-screen py-16 px-4 md:px-8">
{/* Season Recaps Section */}
<LampContainer>
<motion.div
initial={{ opacity: 0, y: 50 }}
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
viewport={{ once: true, amount: 0.1 }}
className="w-full"
>
<h2 className="text-4xl md:text-6xl font-bold main text-center mb-6">
Season Recaps
</h2>
<p className="text-xl text-gray-400 secondary text-center mb-12">
Watch our weekly progress throughout the 2025 season
</p>
<div className="relative w-full h-[70vh]">
<Tabs tabs={tabs} />
</div>
</motion.div>
</LampContainer>

{/* Hero Section */}
<motion.div
initial={{ opacity: 0, y: -20 }}
Expand Down Expand Up @@ -189,27 +135,6 @@ const BlogHome: React.FC<BlogHomeProps> = ({ posts }) => {
))}
</div>
</motion.div>

{/* Season Recaps Section */}
<LampContainer>
<motion.div
initial={{ opacity: 0, y: 50 }}
whileInView={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
viewport={{ once: true, amount: 0.1 }}
className="w-full"
>
<h2 className="text-4xl md:text-6xl font-bold main text-center mb-6">
Season Recaps
</h2>
<p className="text-xl text-gray-400 secondary text-center mb-12">
Watch our weekly progress throughout the 2024 season
</p>
<div className="relative w-full h-[70vh]">
<Tabs tabs={tabs} />
</div>
</motion.div>
</LampContainer>
</div>
);
}
Expand Down
6 changes: 1 addition & 5 deletions pages/team.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"image": "/team/shirley-jiang.webp"
},
"Leila Di Giacomo": {
"department": "Executive",
"department": "Mechnical",
"image": "/team/leila-di-giacomo.webp"
},
"Harry Chen": {
Expand Down Expand Up @@ -167,10 +167,6 @@
"department": "Programming",
"image": "/team/Amridin Mukhamedov.webp"
},
"Aryan Singh": {
"department": "Mechanical",
"image": "/team/Aryan Singh.webp"
},
"Chloe Nebel": {
"department": "Media",
"image": "/team/Chloe Nebel.webp"
Expand Down
Binary file removed public/team/Aryan Singh.webp
Binary file not shown.

0 comments on commit ec024d3

Please sign in to comment.