Welcome to the official Remote GitHub repository (Home) for Cloud Community Day 2025 – the flagship annual gathering of cloud professionals, developers, architects, DevOps engineers, and enthusiasts from across the globe!
Hosted by the GDG Cloud Kolkata, this event brings together thought leaders, pioneers, and practitioners to share insights, trends, and innovations shaping the future of computing.
- Date: [To Be Announced]
- Location: [To Be Announced]
- Theme: "Scaling Innovation Through the Cloud"
- 🔍 Speaker Lineup and Session Details
- 🗺️ Interactive Schedule and Agenda
- 📢 Live Updates and Announcements
- 🧑💼 Sponsor & Partner Highlights
- 🌗 Light/Dark Mode Toggle
Built with modern, performant technologies:
- Frontend: React 19
- Styling: Tailwind CSS
- Bundler: Webpack
- Language: TypeScript
ccd2025-home/
├── public/ # Static assets
├── src/
│ ├── components/ # Reusable UI components
│ │ ├── layout/ # Layout components
│ │ └── ui/ # UI components
│ ├── context/ # React context providers
│ ├── hooks/ # Custom React hooks
│ ├── pages/ # Page components
│ ├── services/ # API services
│ ├── styles/ # Global styles
│ ├── types/ # TypeScript type definitions
│ ├── utils/ # Utility functions
│ ├── App.tsx # Main App component
│ └── index.tsx # Entry point
├── .eslintrc.js # ESLint configuration
├── .prettierrc # Prettier configuration
├── babel.config.js # Babel configuration
├── package.json # Dependencies and scripts
├── postcss.config.mjs # PostCSS configuration
├── tailwind.config.ts # Tailwind CSS configuration
├── tsconfig.json # TypeScript configuration
└── webpack.config.js # Webpack configuration
- Node.js (v18 or higher)
- npm or yarn
# Install dependencies
npm install
# or
yarn install
# Start development server
npm run dev
# or
yarn dev
# Create production build
npm run build
# or
yarn build
# Serve production build
npm run start
# or
yarn start