Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.
Merged
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
8 changes: 4 additions & 4 deletions src/app/contact/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ContactPage = () => (
</a>
</div>
<div>
<SocialIcon url="https://instagram.com" />
<SocialIcon url="https://www.instagram.com/carletonaisociety/" />
<a
className="Instagram-link"
target="_blank"
Expand All @@ -26,7 +26,7 @@ const ContactPage = () => (
Instagram
</a>
<a> </a>
<SocialIcon url="https://discord.com" />
<SocialIcon url="https://discord.gg/nsvsMJaSRJ" />
<a
className="Discord-link"
target="_blank"
Expand All @@ -36,7 +36,7 @@ const ContactPage = () => (
Discord
</a>
<a> </a>
<SocialIcon url="https://linkedin.com" />
<SocialIcon url="https://www.linkedin.com/company/carleton-ai" />
<a
className="Linkedin-link"
target="_blank"
Expand All @@ -46,7 +46,7 @@ const ContactPage = () => (
Linkedin
</a>
<a> </a>
<SocialIcon url="https://youtube.com" />
<SocialIcon url="https://www.youtube.com/channel/UCWKRnTa68hlHrW6WYCgCNaw" />
<a
className="Youtube-link"
target="_blank"
Expand Down
8 changes: 4 additions & 4 deletions src/components/Stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ import { cn } from "@/lib/utils";

const stats = [
{
number: "500+",
number: "50+",
label: "Members",
description: "Active students in our community",
},
{
number: "20+",
number: "5+",
label: "Events",
description: "Workshops and meetups per year",
},
{
number: "15+",
number: "1",
label: "Projects",
description: "Collaborative AI projects completed",
},
{
number: "10+",
number: "2",
label: "Partners",
description: "Industry and academic partnerships",
},
Expand Down
74 changes: 41 additions & 33 deletions src/data/events.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,59 @@
"events": [
{
"id": "1",
"title": "Introduction to Machine Learning",
"date": "2024-03-15",
"time": "5:30 PM - 7:30 PM",
"location": "Tory Building 432",
"description": "Learn the fundamentals of machine learning algorithms and their applications.",
"type": "Workshop",
"title": "Club Expo",
"date": "2025-01-15",
"time": "11:00 AM - 4:00 PM",
"location": "Teraanga Commons",
"description": "Presenting the club to new students and recruiting new members.",
"type": "Social",
"image": "/assets/events/ml-workshop.jpg",
"rsvpLink": "https://forms.google.com/...",
"tags": ["beginner-friendly", "hands-on"]
"tags": ["social", "recruitment"]
},
{
"id": "2",
"title": "AI in Healthcare Panel Discussion",
"date": "2024-03-20",
"time": "6:00 PM - 8:00 PM",
"location": "River Building 2200",
"description": "Industry experts discuss the impact of AI in modern healthcare.",
"type": "Panel",
"image": "/assets/events/healthcare-panel.jpg",
"rsvpLink": "https://forms.google.com/...",
"tags": ["healthcare", "industry-experts"]
"title": "Club Executive Meet and Greet",
"date": "2025-01-22",
"time": "5:00 PM PM - 7:00 PM",
"location": "Paterson Hall 114",
"description": "Meet the club executives and learn about the club's goals and our plans for the future",
"type": "Social",
"image": "/assets/events/ml-workshop.jpg",
"tags": ["social", "planning"]
},
{
"id": "3",
"title": "Neural Networks Deep Dive",
"date": "2024-03-25",
"time": "5:00 PM - 7:00 PM",
"location": "Herzberg Labs 3422",
"description": "Advanced workshop on neural network architectures and implementation.",
"title": "Introduction to Artificial Intelligence",
"date": "2025-03-06",
"time": "6:00 PM - 7:00 PM",
"location": "Tory Building 217",
"description": "Learn the fundamentals of artificial intelligence, focusing on the history, different types of algorithms, and how you can learn about it.",
"type": "Workshop",
"image": "/assets/events/neural-networks.jpg",
"rsvpLink": "https://forms.google.com/...",
"tags": ["advanced", "technical"]
"image": "/assets/events/ml-workshop.jpg",
"tags": ["beginner-friendly", "informative"]
},
{
"id": "4",
"title": "AI Ethics Symposium",
"date": "2024-04-05",
"time": "4:00 PM - 6:00 PM",
"location": "Richcraft Hall 2228",
"description": "Join us for a discussion on ethical considerations in AI development.",
"type": "Symposium",
"image": "/assets/events/ethics-symposium.jpg",
"title": "CUHacking AI Workshop",
"date": "2024-03-15",
"time": "2:00 PM - 3:00 PM",
"location": "Richcraft Hall 1200",
"description": "Hackathon workshop on how to implement Ollama and HuggingFace models in your projects. Also, mentorship access to hackathon participants.",
"type": "Workshop",
"image": "/assets/events/neural-networks.jpg",
"tags": ["beginner-friendly", "hands-on"]
},
{
"id": "5",
"title": "Applications of AI",
"date": "2024-03-20",
"time": "5:30 PM - 7:30 PM",
"location": "Herzberg Labs 3422",
"description": "Beginner workshop on implementing neural networks and a demo on how to build your own model.",
"type": "Workshop",
"image": "/assets/events/neural-networks.jpg",
"rsvpLink": "https://forms.google.com/...",
"tags": ["ethics", "discussion"]
"tags": ["hands-on", "technical"]
}
]
}
Loading