Skip to content

Commit bc03672

Browse files
committed
change: fix links and removed event page
1 parent 222d637 commit bc03672

File tree

7 files changed

+11
-20
lines changed

7 files changed

+11
-20
lines changed

src/app/favicon.ico

40.7 KB
Binary file not shown.

src/app/layout.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ const menuLinks : MenuLink[] = [
3030
url: "/about",
3131
buttonType: "secondary"
3232
},
33-
{
34-
name: "Events",
35-
url: "/about",
36-
buttonType: "secondary"
37-
},
3833
{
3934
name: "Membership",
4035
url: "/membership",
@@ -59,7 +54,6 @@ const menuLinks : MenuLink[] = [
5954
}
6055
]
6156

62-
// Set application deadline - example: one month from now
6357
const applicationDeadline = new Date(2025, 4, 17, 22, 59, 59);
6458

6559
export default function RootLayout({

src/app/membership/info/info.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export default function MembershipInfo() {
220220
viewport={{ once: true }}
221221
transition={{ duration: 0.5, ease: "easeOut" }}
222222
>
223-
<Button buttonType="primary" className="px-12 py-4 text-lg">
223+
<Button buttonType="cta" className="px-12 py-4 text-lg">
224224
APPLY NOW
225225
</Button>
226226
</motion.div>

src/app/membership/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default async function MembershipPage() {
1717
<h1 className="text-4xl text-center lg:text-center lg:text-[64px] font-heading font-bold leading-tight">
1818
Become a Member
1919
</h1>
20-
<p className="text-white text-md text-center font-body tracking-wide">
20+
<p className="text-white text-md lg:text-lg text-center font-body tracking-wide">
2121
Our membership is open to all university students in Munich!
2222
</p>
2323
<div className="relative pb-12 w-full h-[450px] hidden lg:block mt-8 filter grayscale hover:grayscale-0 transition-all duration-150">

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function Home() {
4949
</p>
5050
<div className="flex gap-6 flex-col lg:flex-row items-center mt-10 lg:mt-3">
5151
<Button asChild buttonType="cta" className="w-fit">
52-
<Link href={"#"}>Join Us</Link>
52+
<Link href={"/membership"}>Join Us</Link>
5353
</Button>
5454
<Button asChild buttonType="secondary" className="w-fit">
5555
<Link href={"#"}>Support our cause</Link>

src/app/slideshow.tsx

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ const items = [
99
image: '/conference.jpg',
1010
content: (
1111
<>
12-
At TUM Blockchain Club, we host conferences, workshops, and
13-
events to educate and inspire the next generation of blockchain enthusiasts.
14-
One of our flagship events is the annual <span className="font-bold">TUM Blockchain Conference</span>,
15-
which brings together experts, enthusiasts, and professionals to discuss the
16-
latest trends and developments in the blockchain space.
12+
Our flagship annual <span className="font-bold">TUM Blockchain Conference</span> brings together experts,
13+
enthusiasts, and professionals to discuss the latest trends and developments in blockchain technology.
1714
</>
1815
)
1916
},
@@ -33,9 +30,7 @@ const items = [
3330
image: '/bootcamp.jpg',
3431
content: (
3532
<>
36-
We offer a bootcamp to introduce students to the basics of blockchain technology.
37-
This bootcamp is a great way to get started with blockchain and learn about the latest trends and developments in the industry.
38-
The topics can range from basic concepts to more advanced topics like smart contracts and decentralized applications.
33+
Our bootcamp introduces students to blockchain fundamentals and advanced topics like smart contracts and decentralized applications.
3934
</>
4035
)
4136
},
@@ -76,9 +71,9 @@ export const SlideShow = () => {
7671
<AccordionItem key={index} index={index} title={item.title} image={item.image}>
7772
<AccordionContent>
7873
<div className='absolute w-full overflow-x-hidden h-full bottom-0 left-0 z-10 p-4 flex items-end' style={{ background: 'linear-gradient(0deg, rgba(10, 0, 22, 0.75) 30%, rgba(10, 0, 22, 0.00) 100%)' }}>
79-
<div className='flex min-w-96 w-[360px] flex-col gap-4 justify-end'>
74+
<div className='flex lg:min-w-96 w-[360px] flex-col gap-4 justify-end'>
8075
<h3 className='font-heading font-bold lg:text-2xl'>{item.title}</h3>
81-
<p className='text-md'>
76+
<p className='text-md text-wrap'>
8277
{item.content}
8378
</p>
8479
</div>

src/components/accordion/Accordion.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ export const AccordionContent: React.FC<AccordionContentProps> = ({ children, cl
183183
})}
184184
{...divProps}
185185
>
186-
{children}
186+
<div className="max-w-full text-wrap">
187+
{children}
188+
</div>
187189
</div>
188190
);
189191
};

0 commit comments

Comments
 (0)