Skip to content

Latest commit

 

History

History
108 lines (75 loc) · 2.78 KB

File metadata and controls

108 lines (75 loc) · 2.78 KB

FizzyFlow Official Website

Official static website for FizzyFlow, showcasing our team and innovative blockchain solutions on the Sui ecosystem.

About FizzyFlow

FizzyFlow is a pioneering team in the Sui blockchain ecosystem, building innovative solutions since day one. Our team has created award-winning projects including SuiSQL, HexCapsule, SuiMetaData, and FOMO.

Features

  • Modern, responsive design
  • Smooth scrolling navigation
  • Animated content sections
  • Team member profiles
  • Project showcase
  • Optimized for all devices

Deployment to GitHub Pages

Method 1: Using GitHub Web Interface

  1. Create a new repository on GitHub (e.g., fizzyflow-website)
  2. Upload all files from this directory to the repository
  3. Go to repository Settings > Pages
  4. Under "Source", select the branch you want to deploy (usually main or master)
  5. Click Save
  6. Your site will be published at https://[username].github.io/[repository-name]/

Method 2: Using Git Command Line

# Initialize git repository
git init

# Add all files
git add .

# Commit files
git commit -m "Initial commit: FizzyFlow official website"

# Add remote repository (replace with your repository URL)
git remote add origin https://github.com/[username]/[repository-name].git

# Push to GitHub
git branch -M main
git push -u origin main

Then follow steps 3-6 from Method 1 above.

Custom Domain (Optional)

To use a custom domain:

  1. Create a file named CNAME in the root directory
  2. Add your domain name to the file (e.g., www.fizzyflow.com)
  3. Configure your domain's DNS settings to point to GitHub Pages:
    • Add a CNAME record pointing to [username].github.io
    • Or add A records pointing to GitHub's IP addresses

Local Development

To view the website locally:

  1. Simply open index.html in your web browser
  2. Or use a local server:
    # Python 3
    python -m http.server 8000
    
    # Node.js (with npx)
    npx serve
  3. Visit http://localhost:8000 in your browser

File Structure

fizzyflow/
├── index.html       # Main HTML file
├── styles.css       # CSS styling
├── script.js        # JavaScript functionality
├── .nojekyll        # GitHub Pages configuration
└── README.md        # This file

Technologies Used

  • HTML5
  • CSS3 (with CSS Grid and Flexbox)
  • Vanilla JavaScript
  • GitHub Pages for hosting

Team

  • Jeka - Full-stack Engineer & Sui Pioneer

    • Creator of SuiMetaData, HexCapsule (2024 Overflow Awards), and SuiSQL (2025 Overflow Award)
  • tenxhunter - Full-stack Engineer & Core Team Member

    • Creator of FOMO, the most-interacted-with package on Sui

License

All rights reserved - FizzyFlow Team

Contact

For inquiries about FizzyFlow projects and collaborations, please reach out through our GitHub repository.