Ev@nt is a modern, centralized platform built with Next.js that seamlessly connects students with college events. From club activities to department initiatives, all events are easily accessible in one elegant interface.
- Centralized Dashboard: Access all college events in a clean, intuitive interface
- Smart Categorization: Filter events by type (Tech, Academic, Cultural, etc.)
- Real-time Updates: Stay informed about the latest campus activities
- Club Integration: Direct links to organizers' social media and registration pages
- Event Calendar: Comprehensive view of upcoming events
- Club Activities: Dedicated space for club-specific events
- Featured Events: Highlighting important campus happenings
- Timely Updates: Real-time notifications for event changes
-
Prepare Your Event Image
- Upload your image to postimages.org
- Set validity to 1 Day
- Copy direct link after uploading image
-
Submit Event
- Go to the repository's "Actions" tab
- Click "Event Submission" workflow
- Click "Run workflow"
- Fill in the event details:
Title: Your Event Title Date: DD Month YYYY (e.g., 15 January 2025) By: Your Club/Department Name Registration Link: https://your-registration-link Description: | <p>Your HTML formatted description</p> <p>Can have multiple paragraphs</p> Categories: Tech, Workshop, Club (comma-separated) Display: 1, 2 (1:Trending, 2:Latest, 3:Department) Image: Direct Image URL
-
Review Process
- Action creates a Pull Request automatically
- Admins review and merge your submission
- Event goes live after approval
-
Prepare Files
- Add event image to
/public/photos/events/[clubname]/
- Ensure club logo exists at
/public/photos/clubs/[clubname].jpg
- Add event image to
-
Update Event Data
- Edit
/src/data/event.ts
- Add new event in the following format:
{ id: [next available number], title: "Your Event Title", by: "Your Club", avatar: "/photos/clubs/yourclub.jpg", date: "15 January 2025", registrationLink: "https://your-link", description: ` <p>Your HTML formatted description</p> <p>Support for multiple paragraphs</p> `, image: "/photos/events/yourclub/event-image.jpg", category: ["Tech", "Workshop", "Club"], display: [1, 2] // 1:Trending, 2:Latest, 3:Department }
- Edit
-
Create Pull Request
- Push changes to your fork
- Create PR with event details
- Wait for review and approval
- Frontend: Next.js with TypeScript
- UI Components: Shadcn/UI
- Icons: Lucide React
- Styling: Tailwind CSS
- Deployment: GitHub Pages
- Event Management: GitHub Actions
event/
├── .github/
│ └── workflows/
│ └── event-submission.yml # Automated event submission
├── public/
│ └── photos/
│ ├── clubs/ # Club logos
│ └── events/ # Event images
├── src/
│ ├── app/
│ │ └── _assets/ # Static assets
│ ├── components/
│ │ ├── custom/ # Custom components
│ │ └── ui/ # Shadcn UI components
│ └── data/
│ ├── event.ts # Event data
│ └── interface.ts # TypeScript interfaces
└── [other project files]
- Clone the repository
git clone https://github.com/DevsREC/evant.git
- Install dependencies
npm install
- Start development server
npm run dev
- Access the application at
http://localhost:3000
Events can be tagged with categories including:
- Tech
- Academics
- Placement
- Workshops
- Club Activities
- Cultural
- Sports
- Use HTML formatting for rich content
- Keep descriptions concise and engaging
- Include all necessary contact information
- Add relevant social media links
- Event images: 1200x630px (recommended)
- Club logos: Square aspect ratio
- Supported formats: JPG, PNG
- Optimize images before uploading
- Use descriptive file names
- Trending Events (display: [1])
- Featured and popular events
- Latest Events (display: [2])
- Most recent additions
- Department Events (display: [3])
- Academic and department-specific events
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add: amazing feature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Made with 💖 by DEVS