A modern landing page for CadburyCICD - a self-hosted CI/CD solution built with Next.js, React, and Tailwind CSS using the shadcn/ui component library.
- 🚀 Self-Hosted: Deploy on your own infrastructure with full control
- 🔗 Custom Webhooks: Configure triggers for any git provider
- 💻 Script Freedom: Run any build, test, or deployment script
- 🔒 Data Sovereignty: Keep your code and deployment data in your infrastructure
- ⚡ Performance: Optimized for speed and efficiency
- Node.js 18.x or later
- npm or yarn
- Clone the repository
git clone https://github.com/xxparthparekhxx/Cadbury.git
cd Cadbury
- Install dependencies
npm install
# or
yarn install
- Run the development server
npm run dev
# or
yarn dev
- Open http://localhost:3000 in your browser
├── components/
│ └── ui/ # shadcn/ui components
├── app/
│ └── page.tsx # Main landing page
├── public/ # Static assets
└── styles/ # Global styles
The landing page components are built using shadcn/ui. To customize the theme or add new components:
- Configure the theme in
tailwind.config.js
- Add new shadcn/ui components using their CLI:
npx shadcn-ui add [component-name]
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request