diff --git a/app/dashboard/hackathon/intro/page.tsx b/app/dashboard/hackathon/intro/page.tsx new file mode 100644 index 0000000..9910877 --- /dev/null +++ b/app/dashboard/hackathon/intro/page.tsx @@ -0,0 +1,301 @@ +"use client"; + +import Image from "next/image"; +import { Calendar, MapPin, ChevronRight } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/ui/badge"; +import BannerCTA from "@/components/BannerCTA"; + +export default function SeminarPage() { + const agendaItems = [ + { + title: "9 April 2025", + rundown: [ + { + time: "7:00 AM - 7:30 PM", + title: "Opening & Introduction", + description: + "Welcome Participants, Introduce The Speakers, And Outline The Goals Of The Workshop.", + }, + { + time: "9:00 AM - 10:30 AM", + title: + "Workshop Session: A Dive Into Machine Learning And Sentiment Analysis", + description: + "Learn The Fundamentals Of Sentiment Analysis, From Setting Up The Environment To Preprocessing Text, Tokenizing, And Building A Classification Model. This Session Provides A Hands-On Introduction To Machine Learning Workflows For Analyzing Text Sentiment. ✓", + }, + { + time: "9:00 AM - 6:00 PM", + title: + "Workshop Session: A Dive Into Machine Learning And Sentiment Analysis", + description: + "Learn The Fundamentals Of Sentiment Analysis, From Setting Up The Environment To Preprocessing Text, Tokenizing, And Building A Classification Model. This Session Provides A Hands-On Introduction To Machine Learning Workflows For Analyzing Text Sentiment. ✓", + }, + { + time: "1:30 PM - 2:45 PM", + title: "Closing & Feedback", + description: + "Summarize Key Learnings, Share Resources For Further Learning, And Collect Participant Feedback.", + }, + ], + }, + { + title: "9 April 2025", + rundown: [ + { + time: "7:00 AM - 7:30 PM", + title: "Opening & Introduction", + description: + "Welcome Participants, Introduce The Speakers, And Outline The Goals Of The Workshop.", + }, + { + time: "9:00 AM - 10:30 AM", + title: + "Workshop Session: A Dive Into Machine Learning And Sentiment Analysis", + description: + "Learn The Fundamentals Of Sentiment Analysis, From Setting Up The Environment To Preprocessing Text, Tokenizing, And Building A Classification Model. This Session Provides A Hands-On Introduction To Machine Learning Workflows For Analyzing Text Sentiment. ✓", + }, + { + time: "9:00 AM - 6:00 PM", + title: + "Workshop Session: A Dive Into Machine Learning And Sentiment Analysis", + description: + "Learn The Fundamentals Of Sentiment Analysis, From Setting Up The Environment To Preprocessing Text, Tokenizing, And Building A Classification Model. This Session Provides A Hands-On Introduction To Machine Learning Workflows For Analyzing Text Sentiment. ✓", + }, + ], + }, + ]; + + const speakers = [ + { + name: "Matt Renner", + title: "President, Global Revenue", + company: "Google Cloud", + image: "/assets/dummy-circle.png", + }, + { + name: "Matt Renner", + title: "President, Global Revenue", + company: "Google Cloud", + image: "/assets/dummy-circle.png", + }, + { + name: "Matt Renner", + title: "President, Global Revenue", + company: "Google Cloud", + image: "/assets/dummy-circle.png", + }, + ]; + + const handleRegisterClick = () => { + // Add your registration logic here + console.log("Register button clicked"); + // You could redirect to registration page, open a modal, etc. + }; + + return ( +
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut et + massa mi. Aliquam in hendrerit urna. Pellentesque sit amet sapien + fringilla, mattis ligula consectetur, ultrices mauris. Maecenas + vitae mattis tellus. Nullam quis imperdiet augue. Vestibulum + auctor ornare leo, non suscipit magna interdum eu. Curabitur + pellentesque nibh nibh, at maximus ante fermentum sit amet. + Pellentesque commodo lacus at sodales sodales. Quisque sagittis + orci ut diam condimentum, vel euismod erat placerat. In iaculis + arcu erat, eget tempus orci facilisis id. +
++ A first look at what's coming. Find out when to pick up your + badge, attend sessions, join parties, and more. +
++ {session.description} +
++ {speaker.title} +
++ {speaker.company} +
++ {description} +
+ +