36 lines
638 B
Markdown
36 lines
638 B
Markdown
# BuildMVP
|
|
|
|
Landing page for MVP development services by [Marios Antonoudiou](https://www.linkedin.com/in/mariosant/).
|
|
|
|
## Tech
|
|
|
|
- **11ty** static site generator
|
|
- **Nunjucks** templates
|
|
- Vanilla CSS + JS
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
## Development
|
|
|
|
```bash
|
|
npm start
|
|
```
|
|
|
|
Site served at `http://localhost:8080`.
|
|
|
|
## Build
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
Output goes to `_site/`.
|
|
|
|
## SEO
|
|
|
|
- Canonical URL, Open Graph, Twitter Card, and JSON-LD structured data (`Person`, `Service`, `FAQPage`) are set via `src/_includes/base.njk`.
|
|
- Sitemap at `/sitemap.xml` and `robots.txt` at `/robots.txt` are auto-generated by Eleventy templates. |