Modern landing page for Bitcoin Silver Blockchain built with Vite, React, TypeScript, and Shadcn UI.
- ⚡ Vite - Lightning-fast development and build
- ⚛️ React 18 - Modern React with hooks
- 🎨 Tailwind CSS - Utility-first CSS framework
- 🎭 Framer Motion - Smooth animations
- 🎯 TypeScript - Type-safe code
- 🎪 Shadcn UI - Beautiful, accessible components
- 📊 Live Blockchain Data - Real-time stats from the Bitcoin Silver blockchain
- 🎬 POW Animations - Custom animations representing Proof-of-Work mining
- Node.js 18+ and npm
- Install dependencies:
npm install- Start the development server:
npm run dev- Open your browser and navigate to
http://localhost:5173
npm run buildThe built files will be in the dist directory.
npm run previewsrc/
├── components/
│ ├── ui/ # Shadcn UI components
│ ├── Header.tsx # Navigation header
│ ├── HeroSection.tsx # Hero section with POW animation
│ ├── StatsSection.tsx # Live blockchain statistics
│ ├── FeaturesSection.tsx # Features grid
│ ├── RoadmapSection.tsx # Development roadmap
│ ├── Footer.tsx # Footer with social links
│ └── POWAnimation.tsx # Custom POW mining animation
├── hooks/
│ └── useBlockchainData.ts # Hook for fetching blockchain data
├── lib/
│ └── utils.ts # Utility functions
├── App.tsx # Main app component
├── main.tsx # Entry point
└── index.css # Global styles
The landing page fetches live data from the Bitcoin Silver blockchain explorer:
- Block height
- Network hashrate
- Difficulty
- Circulating supply
- Network nodes
- And more...
Data is automatically refreshed every 30 seconds.
Edit the color scheme in src/index.css by modifying the CSS variables.
Update the content in the respective component files:
- Hero text:
src/components/HeroSection.tsx - Features:
src/components/FeaturesSection.tsx - Roadmap:
src/components/RoadmapSection.tsx - Messenger:
src/components/MessengerSection.tsx
- Vite - Build tool
- React - UI library
- TypeScript - Type safety
- Tailwind CSS - Styling
- Framer Motion - Animations
- Shadcn UI - Component library
- Lucide React - Icons
MIT