A modern website for Makora Bio, featuring intelligent tools that accelerate life sciences with agentic AI.
This website showcases Makora Bio's mission to build intelligent tools that free scientists from tedious digital tasks, allowing them to focus on discovery and innovation.
- Node.js & npm installed - install with nvm
# Clone the repository
git clone <YOUR_GIT_URL>
# Navigate to the project directory
cd makora-bio-website
# Install dependencies
npm install
# Start the development server
npm run devThis project is built with:
- Vite - Fast build tool and development server
- TypeScript - Type-safe JavaScript
- React - UI library
- shadcn/ui - Modern component library
- Tailwind CSS - Utility-first CSS framework
src/
├── components/ # React components
│ ├── ui/ # shadcn/ui components
│ ├── Contact.tsx # Contact section
│ ├── Hero.tsx # Hero section
│ ├── Platform.tsx # Platform showcase
│ └── Waitlist.tsx # Waitlist signup
├── pages/ # Page components
├── hooks/ # Custom React hooks
└── lib/ # Utility functions
npm run dev- Start development servernpm run build- Build for productionnpm run preview- Preview production buildnpm run lint- Run ESLint
This project uses ESLint and TypeScript for code quality and consistency. Make sure to run the linter before committing changes.
The website can be deployed to any static hosting service like Vercel, Netlify, or GitHub Pages.
- Fork the repository
- Create a 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