https://github.com/tmhsdigital/syncflow-frontend-demo
Premium single-file B2B SaaS landing page demo (fictional brand: SyncFlow AI). Hand-built HTML/CSS/vanilla JS, no framework, no build step. A frontend & CRO showcase.
https://github.com/tmhsdigital/syncflow-frontend-demo
cro demo frontend github-pages html-css-javascript landing-page responsive-design saas vanilla-js web-design
Last synced: 16 days ago
JSON representation
Premium single-file B2B SaaS landing page demo (fictional brand: SyncFlow AI). Hand-built HTML/CSS/vanilla JS, no framework, no build step. A frontend & CRO showcase.
- Host: GitHub
- URL: https://github.com/tmhsdigital/syncflow-frontend-demo
- Owner: TMHSDigital
- License: mit
- Created: 2026-06-16T00:44:24.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-16T02:19:15.000Z (about 1 month ago)
- Last Synced: 2026-06-16T02:23:03.131Z (about 1 month ago)
- Topics: cro, demo, frontend, github-pages, html-css-javascript, landing-page, responsive-design, saas, vanilla-js, web-design
- Language: HTML
- Homepage: https://tmhsdigital.github.io/syncflow-frontend-demo/
- Size: 2.99 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SyncFlow AI
**A responsive B2B SaaS landing page contained in a single `index.html` file.**
No framework, no build step. The markup, styles, and scripts are self-contained, and the page renders directly in any modern browser.
[](https://tmhsdigital.github.io/syncflow-frontend-demo/)
[](https://github.com/TMHSDigital/syncflow-frontend-demo/actions/workflows/deploy.yml)
[](LICENSE)








> [!NOTE]
> SyncFlow AI is a fictional company created for this demo. The product, metrics, testimonials, and customer names are placeholders and do not represent real claims.
## Overview
The page presents a fictional operations-automation product as a complete marketing site: hero, social proof, problem framing, features, pricing, FAQ, and a closing call to action. It serves as a self-contained reference for building a conversion-focused landing page without a frontend toolchain.
Design decisions are deliberate rather than incidental:
- **Visual hierarchy.** Sections follow a single narrative from value proposition to call to action, so the page reads as one argument rather than a set of unrelated blocks.
- **Color discipline.** The palette follows a 60/30/10 split: a neutral background, slate for text and structure, and a coral accent (`#FF5A3C`) reserved for primary actions, so the next step is always visually obvious.
- **Typography.** Two typefaces only: Fraunces for headings and Inter for body text.
- **Responsiveness.** Layouts collapse to a single column on small screens, navigation condenses into a menu, and interactive targets are sized for touch. No content is hidden inside carousels.
## Screenshots

Testimonials
Pricing

Responsive layout on mobile
These images are regenerated with the capture script in [`scripts/screenshots/`](scripts/screenshots/).
## Sections
| Section | Purpose |
| --- | --- |
| Hero | States the core value proposition with a single primary action |
| Logo marquee | Establishes credibility early |
| Stats band | Supports the value proposition with figures |
| Problem grid | Frames the pain points the product addresses |
| Features | Presents Connect, Automate, and Watch in an alternating layout |
| Testimonials | Pairs each quote with a specific outcome |
| Pricing | Three tiers with the recommended plan emphasized |
| FAQ | Resolves common objections |
| Final CTA | Closes with a low-friction prompt |
## Implementation
All styling lives in a single `` block and all behavior in a single `<script>`. The only external resource is Google Fonts; imagery is served from Unsplash.
The CSS uses custom properties for theming, flexbox and grid for layout, and `clamp()` for typography that scales fluidly with the viewport. The JavaScript is limited to four responsibilities: a header shadow on scroll, the mobile menu toggle, the FAQ accordion, and scroll-triggered reveals via `IntersectionObserver`. All content remains visible and legible if JavaScript does not execute.
## Local development
No dependencies or build step are required.
```bash
git clone https://github.com/TMHSDigital/syncflow-frontend-demo.git
cd syncflow-frontend-demo
```
Open `index.html` directly, or serve it over HTTP to match production behavior:
```bash
python -m http.server 8000 # http://localhost:8000
```
## Deployment
Pushing to `main` runs [`.github/workflows/deploy.yml`](.github/workflows/deploy.yml), which publishes the site to GitHub Pages.
> [!TIP]
> To configure this on a fork, open **Settings → Pages → Build and deployment**, set **Source** to **GitHub Actions**, and push to `main`.
## Customization
The design tokens are defined at the top of the `<style>` block:
```css
:root {
--bg: #F7F8FA; /* dominant background */
--ink: #14203A; /* text and structure */
--accent: #FF5A3C; /* buttons and accents */
}
```
Updating `--accent` re-themes every primary action at once. Replace the Google Fonts link and the `font-family` declarations to change the type. All copy is plain HTML and can be edited in place.
## Project structure
```
.
├── index.html # complete site (HTML, CSS, JS)
├── docs/screenshots/ # README images
├── scripts/screenshots/ # headless-Chrome capture tooling
├── .github/workflows/deploy.yml # GitHub Pages deployment
├── .gitattributes # line-ending normalization
├── .gitignore
├── LICENSE
└── README.md
```
## License
Released under the [MIT License](LICENSE). Imagery is used under the [Unsplash License](https://unsplash.com/license); fonts are licensed under the [SIL Open Font License](https://openfontlicense.org/).
<div align="center">
<br />
[**Live site**](https://tmhsdigital.github.io/syncflow-frontend-demo/) · [**Report an issue**](https://github.com/TMHSDigital/syncflow-frontend-demo/issues) · [**MIT License**](LICENSE)
<sub>Built by <a href="https://github.com/TMHSDigital">TMHSDigital</a> · <a href="#syncflow-ai">Back to top ↑</a></sub>
</div>