🔗 Лендинг — tokenbel.info | Агрегатор токенов — dashboard.tokenbel.info
This project has been successfully migrated from a React + Vite + TypeScript setup to a pure HTML + Tailwind CSS 4.1 static site.
/
├── public/ # Static assets and additional HTML pages
│ ├── contacts.html # Contact page
│ ├── favicon.ico # Favicon
│ └── ... # Other static assets
├── index.html # Main HTML file
├── vite.config.ts # Vite configuration
├── tailwind.config.ts # Tailwind CSS configuration
├── postcss.config.js # PostCSS configuration
└── package.json # Project dependencies
- Vite - Fast build tool and development server
- Tailwind CSS 4.1 - Utility-first CSS framework (via CDN)
- Alpine.js - Lightweight JavaScript framework for interactivity
- HTML5 - Pure HTML structure
- Node.js (v18+) or Bun
- npm, yarn, pnpm, or bun
# Clone the repository
git clone <repository-url>
cd contact-refresh
# Install dependencies
bun install
# or
npm install
# or
yarn install
# or
pnpm install# Start development server
bun run dev
# or
npm run dev
# Server will start at http://localhost:8080# Build for production
bun run build
# or
npm run build
# Preview production build
bun run preview
# or
npm run preview✅ Pure HTML + Tailwind CSS - No React dependencies
✅ Fast build times - Vite-powered optimization
✅ Responsive design - Mobile-first approach
✅ Easy to maintain - Simple file structure
✅ Production ready - Optimized assets
- Home Page (
index.html) - Main landing page - Contact Page (
public/contacts.html) - Contact form and information
- Create a new HTML file in the
public/directory - Add the page to the
vite.config.tsrollupOptions.input - Use Tailwind CSS classes for styling
The project uses Tailwind CSS 4.1 via CDN. You can:
- Use utility classes directly in HTML
- Add custom CSS in
<style>tags - Extend Tailwind configuration in
tailwind.config.ts
The project can be deployed to any static hosting service:
- Vercel
- Netlify
- GitHub Pages
- Cloudflare Pages
- AWS S3
- Any static file hosting
# Build for production
bun run build
# Deploy the dist/ folder to your hosting providerThis project was successfully migrated from:
- React 18 → Pure HTML
- TypeScript → JavaScript
- Complex build system → Simple Vite setup
- Multiple dependencies → Minimal dependencies
For any issues or questions, please open an issue on the GitHub repository.