├── .github └── FUNDING.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── docs ├── css │ ├── normalize.min.css │ └── page.css ├── img │ ├── features │ │ ├── icon1.svg │ │ ├── icon2.svg │ │ ├── icon3.svg │ │ ├── icon4.svg │ │ ├── icon5.svg │ │ ├── icon6.svg │ │ ├── icon7.svg │ │ └── icon8.svg │ ├── github.svg │ ├── logo.svg │ ├── undraw_Friends_online_re_r7pq.svg │ └── undraw_asset_selection_ix3v.svg ├── imprint │ └── index.html ├── index.html ├── privacy │ └── index.html └── robots.txt ├── eleventy.config.js ├── package.json ├── src ├── _data │ ├── env.js │ ├── features.json │ └── site.json ├── _includes │ ├── css │ │ ├── _page.css │ │ ├── custom.css │ │ └── normalize.css │ ├── footer.njk │ ├── head.njk │ ├── js.njk │ ├── navbar.njk │ ├── section.about.njk │ ├── section.features.njk │ ├── section.header.njk │ └── section.register.njk ├── _layouts │ ├── base.njk │ └── page.njk ├── css │ └── page.11ty.js ├── imprint.md ├── index.njk ├── privacy.md ├── sections │ ├── about.md │ ├── features.md │ ├── register.md │ └── sections.json └── static │ ├── css │ └── normalize.min.css │ ├── img │ ├── features │ │ ├── icon1.svg │ │ ├── icon2.svg │ │ ├── icon3.svg │ │ ├── icon4.svg │ │ ├── icon5.svg │ │ ├── icon6.svg │ │ ├── icon7.svg │ │ └── icon8.svg │ ├── github.svg │ ├── logo.svg │ ├── undraw_Friends_online_re_r7pq.svg │ └── undraw_asset_selection_ix3v.svg │ └── robots.txt └── tailwind.config.cjs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.18.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/css/normalize.min.css -------------------------------------------------------------------------------- /docs/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/css/page.css -------------------------------------------------------------------------------- /docs/img/features/icon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon1.svg -------------------------------------------------------------------------------- /docs/img/features/icon2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon2.svg -------------------------------------------------------------------------------- /docs/img/features/icon3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon3.svg -------------------------------------------------------------------------------- /docs/img/features/icon4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon4.svg -------------------------------------------------------------------------------- /docs/img/features/icon5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon5.svg -------------------------------------------------------------------------------- /docs/img/features/icon6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon6.svg -------------------------------------------------------------------------------- /docs/img/features/icon7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon7.svg -------------------------------------------------------------------------------- /docs/img/features/icon8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/features/icon8.svg -------------------------------------------------------------------------------- /docs/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/github.svg -------------------------------------------------------------------------------- /docs/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/logo.svg -------------------------------------------------------------------------------- /docs/img/undraw_Friends_online_re_r7pq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/undraw_Friends_online_re_r7pq.svg -------------------------------------------------------------------------------- /docs/img/undraw_asset_selection_ix3v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/img/undraw_asset_selection_ix3v.svg -------------------------------------------------------------------------------- /docs/imprint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/imprint/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/privacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/privacy/index.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/eleventy.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/package.json -------------------------------------------------------------------------------- /src/_data/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_data/env.js -------------------------------------------------------------------------------- /src/_data/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_data/features.json -------------------------------------------------------------------------------- /src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_data/site.json -------------------------------------------------------------------------------- /src/_includes/css/_page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/css/_page.css -------------------------------------------------------------------------------- /src/_includes/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/css/custom.css -------------------------------------------------------------------------------- /src/_includes/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/css/normalize.css -------------------------------------------------------------------------------- /src/_includes/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/footer.njk -------------------------------------------------------------------------------- /src/_includes/head.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/head.njk -------------------------------------------------------------------------------- /src/_includes/js.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/js.njk -------------------------------------------------------------------------------- /src/_includes/navbar.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/navbar.njk -------------------------------------------------------------------------------- /src/_includes/section.about.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/section.about.njk -------------------------------------------------------------------------------- /src/_includes/section.features.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/section.features.njk -------------------------------------------------------------------------------- /src/_includes/section.header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/section.header.njk -------------------------------------------------------------------------------- /src/_includes/section.register.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_includes/section.register.njk -------------------------------------------------------------------------------- /src/_layouts/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_layouts/base.njk -------------------------------------------------------------------------------- /src/_layouts/page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/_layouts/page.njk -------------------------------------------------------------------------------- /src/css/page.11ty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/css/page.11ty.js -------------------------------------------------------------------------------- /src/imprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/imprint.md -------------------------------------------------------------------------------- /src/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/index.njk -------------------------------------------------------------------------------- /src/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/privacy.md -------------------------------------------------------------------------------- /src/sections/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/sections/about.md -------------------------------------------------------------------------------- /src/sections/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/sections/features.md -------------------------------------------------------------------------------- /src/sections/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/sections/register.md -------------------------------------------------------------------------------- /src/sections/sections.json: -------------------------------------------------------------------------------- 1 | { 2 | "permalink": false 3 | } -------------------------------------------------------------------------------- /src/static/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/css/normalize.min.css -------------------------------------------------------------------------------- /src/static/img/features/icon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon1.svg -------------------------------------------------------------------------------- /src/static/img/features/icon2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon2.svg -------------------------------------------------------------------------------- /src/static/img/features/icon3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon3.svg -------------------------------------------------------------------------------- /src/static/img/features/icon4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon4.svg -------------------------------------------------------------------------------- /src/static/img/features/icon5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon5.svg -------------------------------------------------------------------------------- /src/static/img/features/icon6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon6.svg -------------------------------------------------------------------------------- /src/static/img/features/icon7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon7.svg -------------------------------------------------------------------------------- /src/static/img/features/icon8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/features/icon8.svg -------------------------------------------------------------------------------- /src/static/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/github.svg -------------------------------------------------------------------------------- /src/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/logo.svg -------------------------------------------------------------------------------- /src/static/img/undraw_Friends_online_re_r7pq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/undraw_Friends_online_re_r7pq.svg -------------------------------------------------------------------------------- /src/static/img/undraw_asset_selection_ix3v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/img/undraw_asset_selection_ix3v.svg -------------------------------------------------------------------------------- /src/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/src/static/robots.txt -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/11ty-landing-page/HEAD/tailwind.config.cjs --------------------------------------------------------------------------------