Skip to content
Open
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
49 changes: 49 additions & 0 deletions .github/workflows/deploy-landing-page.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Deploy Landing Page to GitHub Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["master", "landing-page"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire landing-page directory
path: './landing-page'

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
11 changes: 11 additions & 0 deletions landing-page/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Ignore development server files
.DS_Store
*.log
node_modules/
.vscode/
.idea/

# Ignore any build artifacts if using a build tool
dist/
build/
.cache/
Empty file added landing-page/.nojekyll
Empty file.
104 changes: 104 additions & 0 deletions landing-page/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# QEFI Entry Manager Landing Page

A modern, responsive landing page for the QEFI Entry Manager project, deployed to GitHub Pages.

## Features

- Modern, clean design with gradient accents
- Fully responsive layout (mobile, tablet, desktop)
- Download links for all supported platforms
- Screenshot gallery
- Feature showcase
- Build from source instructions
- Smooth scrolling and animations
- Dark code blocks with copy functionality

## Local Development

To view the landing page locally:

1. Simply open `index.html` in a web browser, or
2. Use a local server for better testing:

```bash
# Python 3
cd landing-page
python -m http.server 8000

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

# PHP
php -S localhost:8000 -t landing-page
```

Then visit `http://localhost:8000`

## Deployment

The landing page is automatically deployed to GitHub Pages using the workflow in `.github/workflows/deploy-landing-page.yml`.

### Manual Deployment

The workflow runs automatically on pushes to the `master` or `landing-page` branches. You can also trigger it manually from the Actions tab in GitHub.

### GitHub Pages Configuration

To enable GitHub Pages:

1. Go to your repository Settings
2. Navigate to Pages
3. Under "Build and deployment", select "Source" as "GitHub Actions"
4. The workflow will automatically deploy the `landing-page` directory

## Customization

### Colors

Edit the CSS variables in `assets/css/style.css`:

```css
:root {
--color-primary: #4CAF50;
--color-secondary: #2196F3;
--color-accent: #FF9800;
/* ... more variables */
}
```

### Content

Edit `index.html` to modify:
- Hero section text
- Feature descriptions
- Download links
- Screenshots
- Build instructions

### Screenshots

Place screenshots in the `.github/` directory (referenced with relative paths like `../.github/screenshot.png`).

## Structure

```
landing-page/
├── index.html # Main HTML file
├── assets/
│ ├── css/
│ │ └── style.css # Main stylesheet
│ └── js/
│ └── main.js # Interactive functionality
└── README.md # This file
```

## Browser Support

- Chrome/Edge (latest)
- Firefox (latest)
- Safari (latest)
- Mobile browsers (iOS Safari, Chrome Mobile)

## License

Same as the main project (GPL-3.0)
Loading
Loading