Skip to content
Closed

Ali3 #57

Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions app/about-us/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export default function AboutUsPage() {
<div>
<span className="text-brand-pink text-xs font-bold tracking-[0.4em] uppercase block mb-4">Meet the Team</span>
<h2 className="text-5xl sm:text-6xl lg:text-7xl font-black leading-none tracking-tight">
THE<br />EXECUTIVE<br />BOARD
THE BOARD
</h2>
</div>

Expand All @@ -223,7 +223,7 @@ export default function AboutUsPage() {
<Image src={member.photo} alt={member.name} fill sizes="(max-width: 640px) 144px, 192px" className="object-cover object-top" draggable={false} />
</div>
<p className="font-black uppercase text-white text-xs lg:text-sm tracking-wide leading-tight">{member.name}</p>
<p className="text-brand-pink text-[11px] lg:text-xs font-semibold mt-1 uppercase tracking-widest">{member.role}</p>
<p className="text-gray-500 text-[11px] lg:text-xs font-semibold mt-1 uppercase tracking-widest">{member.role}</p>
</div>
))}
</div>
Expand Down
5 changes: 3 additions & 2 deletions app/home/HomeClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,8 @@ export default function HomeClient({ initialPartners, initialStartups }: HomeCli
{/* Left side - Text & Stats */}
<div className="relative">
<p className="text-gray-300 text-lg leading-relaxed mb-16 max-w-md">
We&apos;re a part of the sprawling START Network. This interconnection multiplies our potential across the world, allowing us to draw inspiration from diverse cultures, share insights, and create an ecosystem that nurtures collective progress.
</p>
We are part of the START Network. At START Munich are one of the 22 START chapters across Europe and Latin America. Thus we not only have our local community, but also have access to a peer network of equally driven students around the world.
</p>
Comment on lines +534 to +535
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix grammar in START Network copy.

This text is user-facing and currently reads awkwardly (“At START Munich are one…”). Please tighten the sentence for clarity.

✍️ Suggested wording
-                 We are part of the START Network. At START Munich are one of the 22 START chapters across Europe and Latin America. Thus we not only have our local community, but also have access to a peer network of equally driven students around the world.
+                 We are part of the START Network. START Munich is one of 22 START chapters across Europe and Latin America. This gives us not only a strong local community, but also access to a peer network of equally driven students around the world.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
We are part of the START Network. At START Munich are one of the 22 START chapters across Europe and Latin America. Thus we not only have our local community, but also have access to a peer network of equally driven students around the world.
</p>
We are part of the START Network. START Munich is one of 22 START chapters across Europe and Latin America. This gives us not only a strong local community, but also access to a peer network of equally driven students around the world.
</p>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@app/home/HomeClient.tsx` around lines 534 - 535, The paragraph in
HomeClient.tsx inside the HomeClient component contains awkward grammar ("At
START Munich are one of the 22 START chapters…"); replace that sentence with a
clearer version — e.g. "We are part of the START Network: START Munich is one of
22 START chapters across Europe and Latin America, so we not only have a local
community but also access to a global peer network of driven students." Update
the JSX <p> content accordingly to use this corrected sentence.


{/* Globe illustration */}
<div className="absolute -bottom-10 -left-10 w-72 h-72 opacity-15">
Expand Down Expand Up @@ -631,6 +631,7 @@ export default function HomeClient({ initialPartners, initialStartups }: HomeCli
<div className="relative">
<div className="rounded-3xl overflow-hidden border-2 border-white/10 relative h-[500px] lg:h-[600px]">
<Image
src="/home/good.png"
src="/home/good-opt.png"
alt="START Munich Event"
fill
Expand Down