- Frontend: React
- Build Tool: Vite
- Language: TypeScript
- Styling: Tailwind CSS
- Icons: Lucide
- Deployment: Vercel
- Node.js
- npm or yarn
-
Clone the repository:
git clone https://github.com/{username}/{repo-name}.git cd {repo-name} -
Install dependencies:
npm install # or yarn install -
Start the development server:
npm run dev # or yarn dev
dormant-neurons/
├── src/
│ ├── components/ # Reusable UI components
│ ├── data/ # Data files (publications, news, etc.)
│ ├── pages/ # Page components
│ ├── App.tsx # Main application component
│ └── main.tsx # Application entry point
├── public/ # Static assets
└── index.html # HTML template
The project uses Tailwind CSS for styling. Key variables are defined in tailwind.config.js
The project is configured for deployment on Vercel. The vercel.json file handles client-side routing:
{
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}This project is licensed under the MIT License - see the LICENSE file for details.