Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Development files
*.log
*.tmp
.DS_Store
Thumbs.db

# Editor files
.vscode/
.idea/
*.swp
*.swo

# Temporary files
/tmp/

# Backup files
*.bak
*.backup

# Runtime files
*.pid
nohup.out

# Dependencies (if any are added in future)
node_modules/
vendor/

# Build artifacts (if any are added in future)
dist/
build/
159 changes: 159 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
# 🌟 Sovereign Chain - Pitch Deck Website

A modern, responsive pitch deck website showcasing Sovereign Chain's revolutionary blockchain logistics platform.

## πŸš€ Features

- **4 Beautiful Slides**: Welcome, Features, Technology, and Contact
- **Gradient Backgrounds**: Professional gradient designs instead of video backgrounds
- **Smooth Animations**: Fade-in effects and smooth transitions
- **Mobile Responsive**: Optimized for all device sizes
- **Keyboard Navigation**: Use arrow keys, spacebar, Home/End keys
- **Touch Support**: Swipe navigation on mobile devices
- **Auto-play**: Automatic slide progression (8-second intervals)
- **Progress Bar**: Visual progress indicator
- **Slide Indicators**: Clickable dots for quick navigation

## πŸ“‹ Navigation Controls

### Keyboard Shortcuts
- `β†’` or `↓` or `Space`: Next slide
- `←` or `↑`: Previous slide
- `Home`: Go to first slide
- `End`: Go to last slide

### Mouse/Touch
- Click navigation buttons at the bottom
- Click slide indicator dots (top right)
- Swipe left/right on mobile devices

## πŸ—οΈ Project Structure

```
pith-deck/
β”œβ”€β”€ index.html # Main HTML file
β”œβ”€β”€ css/
β”‚ └── style.css # All styling and responsive design
β”œβ”€β”€ js/
β”‚ └── script.js # Interactive functionality
β”œβ”€β”€ assets/ # Future assets (images, icons)
β”œβ”€β”€ pith # Original HTML file (backup)
└── README.md # This file
```

## 🎨 Design Features

### Gradient Backgrounds
- **Slide 1 (Welcome)**: Blue-purple gradient (#667eea β†’ #764ba2)
- **Slide 2 (Features)**: Pink-red gradient (#f093fb β†’ #f5576c)
- **Slide 3 (Technology)**: Blue-cyan gradient (#4facfe β†’ #00f2fe)
- **Slide 4 (Contact)**: Green-turquoise gradient (#43e97b β†’ #38f9d7)

### Typography
- Modern font stack: Segoe UI, Tahoma, Geneva, Verdana, sans-serif
- Responsive font sizes that scale on mobile
- Text shadows for better readability over gradient backgrounds

### Interactive Elements
- Hover effects on buttons
- Active states for current slide indicators
- Smooth transitions between slides
- Glass-morphism effects on feature cards

## 🌐 Browser Compatibility

- βœ… Chrome (latest)
- βœ… Firefox (latest)
- βœ… Safari (latest)
- βœ… Edge (latest)
- βœ… Mobile browsers (iOS/Android)

## πŸš€ Getting Started

1. **Clone the repository**:
```bash
git clone https://github.com/jaquelinejaque/pith-deck.git
cd pith-deck
```

2. **Serve the website**:
```bash
# Using Python
python -m http.server 8000

# Using Node.js (if you have http-server installed)
npx http-server

# Using PHP
php -S localhost:8000
```

3. **Open in browser**:
Navigate to `http://localhost:8000`

## πŸ“± Mobile Optimization

The website is fully responsive and optimized for:
- **Tablets**: 768px and below
- **Mobile phones**: 480px and below
- **Touch gestures**: Swipe navigation
- **Viewport scaling**: Proper meta tags for mobile

## πŸ”§ Customization

### Adding More Slides
1. Add a new slide div in `index.html`:
```html
<div class="slide" id="slide5">
<div class="content">
<h1>Your Title</h1>
<p>Your content...</p>
</div>
</div>
```

2. Add a gradient background in `css/style.css`:
```css
#slide5 {
background: linear-gradient(135deg, #color1, #color2);
}
```

3. Update `totalSlides` in `js/script.js` and add a navigation button.

### Changing Colors
Modify the gradient backgrounds in `css/style.css` by changing the hex color values in the `linear-gradient` functions.

### Customizing Content
Update the content in the `.content` divs within each slide in `index.html`.

## πŸ“Š Performance

- **Fast Loading**: No external dependencies or large assets
- **Optimized CSS**: Efficient animations and transitions
- **Minimal JavaScript**: Clean, efficient code
- **Mobile-First**: Responsive design for all devices

## 🀝 Contributing

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

## πŸ“ License

This project is open source and available under the [MIT License](LICENSE).

## πŸ“ž Contact

For questions or support regarding this pitch deck website:

- **Email**: contact@sovereignchain.io
- **Phone**: +1 (555) 123-CHAIN
- **Website**: www.sovereignchain.io

---

*Built with ❀️ for modern web standards and accessibility*
Loading