A modern, responsive landing page for Logstag, a comprehensive database monitoring platform that provides real-time insights, powerful analytics, and proactive alerts for multiple database engines.
- Real-time Monitoring: Monitor database performance metrics in real-time with customizable dashboards
- Intelligent Analytics: Advanced analytics and machine learning algorithms to identify performance bottlenecks
- Multi-Engine Support: Support for PostgreSQL, MySQL, MongoDB, Redis, and more
- Smart Alerts: Proactive alerting system with customizable thresholds
- Query Analysis: Deep dive into slow queries and execution plans
- Security & Compliance: Enterprise-grade security with encryption and audit logs
- HTML5: Semantic markup and modern structure
- CSS3: Responsive design with Flexbox and Grid
- JavaScript: Interactive features and smooth animations
- Font Awesome: Icon library for UI elements
- Google Fonts: Inter and Space Grotesk typography
logstag-web/
├── assets/ # Images, icons, and other static assets
│ ├── logo.svg
│ ├── dashboard.png
│ └── ...
├── .github/
│ └── workflows/
│ └── deploy.yml # GitHub Actions deployment workflow
├── index.html # Main HTML file
├── styles.css # CSS styles
├── script.js # JavaScript functionality
├── README.md # Project documentation
└── .gitignore # Git ignore file
This project is configured for automatic deployment to GitHub Pages using GitHub Actions.
- A GitHub account
- Git installed on your local machine
-
Create a new repository on GitHub
- Go to GitHub and create a new repository
- Name it
logstag-web(or any name you prefer) - Make it public (required for free GitHub Pages)
-
Initialize Git and push to GitHub
# Initialize git repository git init # Add all files git add . # Commit changes git commit -m "Initial commit: Logstag landing page" # Add remote origin (replace with your repository URL) git remote add origin https://github.com/YOUR_USERNAME/logstag-web.git # Push to GitHub git push -u origin main
-
Enable GitHub Pages
- Go to your repository on GitHub
- Click on "Settings" tab
- Scroll down to "Pages" section
- Under "Source", select "GitHub Actions"
- The deployment will start automatically
-
Access your deployed site
- Your site will be available at:
https://YOUR_USERNAME.github.io/logstag-web - The deployment process takes a few minutes to complete
- Your site will be available at:
The project includes a GitHub Actions workflow (.github/workflows/deploy.yml) that automatically:
- Builds and deploys the site when you push to the main branch
- Updates the site whenever you make changes
- Provides a live URL for your deployed site
To run the project locally:
-
Clone the repository
git clone https://github.com/YOUR_USERNAME/logstag-web.git cd logstag-web -
Open in browser
- Simply open
index.htmlin your web browser - Or use a local server:
# Using Python python -m http.server 8000 # Using Node.js (if you have http-server installed) npx http-server
- Simply open
- Edit
index.htmlto modify the content and structure - Update
styles.cssto change the appearance and styling - Modify
script.jsto add or change interactive features
- Add HTML structure in
index.html - Add corresponding CSS styles in
styles.css - Add JavaScript functionality in
script.jsif needed
- Update CSS custom properties in
styles.css - Replace logo files in the
assets/folder - Modify the color scheme by updating the CSS variables
This project supports all modern browsers including:
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
The site is optimized for performance with:
- Optimized images and assets
- Efficient CSS and JavaScript
- Responsive design for all devices
- Fast loading times
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is open source and available under the MIT License.
For questions or support, please contact us through the contact form on the website.
Note: Make sure to replace YOUR_USERNAME with your actual GitHub username in the deployment instructions.