├── .gitignore ├── .npmrc ├── .prettierrc ├── README.md ├── app ├── app.config.ts ├── app.vue ├── assets │ └── css │ │ ├── global.css │ │ └── main.css ├── components │ ├── App │ │ ├── Footer.vue │ │ ├── FullLoading.vue │ │ ├── Header.vue │ │ ├── Layout.vue │ │ ├── Logo.vue │ │ ├── SwitchMode.vue │ │ └── SwitchPrimaryColor.vue │ ├── Elements │ │ ├── Auth │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ └── Cover.vue │ │ ├── CTA │ │ │ ├── 1.vue │ │ │ ├── 10.vue │ │ │ ├── 11.vue │ │ │ ├── 12.vue │ │ │ ├── 13.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ ├── 7.vue │ │ │ ├── 8.vue │ │ │ ├── 9.vue │ │ │ └── Cover.vue │ │ ├── Contact │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ └── Cover.vue │ │ ├── Container.vue │ │ ├── FAQ │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ └── Cover.vue │ │ ├── Features │ │ │ ├── 1.vue │ │ │ ├── 10.vue │ │ │ ├── 11.vue │ │ │ ├── 12.vue │ │ │ ├── 13.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ ├── 7.vue │ │ │ ├── 8.vue │ │ │ ├── 9.vue │ │ │ └── Cover.vue │ │ ├── Footers │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ ├── 7.vue │ │ │ ├── 8.vue │ │ │ └── Cover.vue │ │ ├── Gallery │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ └── Cover.vue │ │ ├── Header.vue │ │ ├── Headers │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ ├── 7.vue │ │ │ └── Cover.vue │ │ ├── Hero │ │ │ ├── 1.vue │ │ │ ├── 10.vue │ │ │ ├── 11.vue │ │ │ ├── 12.vue │ │ │ ├── 13.vue │ │ │ ├── 14.vue │ │ │ ├── 15.vue │ │ │ ├── 16.vue │ │ │ ├── 17.vue │ │ │ ├── 18.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ ├── 7.vue │ │ │ ├── 8.vue │ │ │ ├── 9.vue │ │ │ └── Cover.vue │ │ ├── Logos │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ └── Cover.vue │ │ ├── Testimonials │ │ │ ├── 1.vue │ │ │ ├── 2.vue │ │ │ ├── 3.vue │ │ │ ├── 4.vue │ │ │ ├── 5.vue │ │ │ ├── 6.vue │ │ │ └── Cover.vue │ │ ├── Tile.vue │ │ └── Wrapper.vue │ ├── Landing │ │ ├── CTA.vue │ │ ├── Features.vue │ │ └── Hero.vue │ ├── LandingPages │ │ ├── 1.vue │ │ ├── 2.vue │ │ ├── 3.vue │ │ ├── 4.vue │ │ ├── Container.vue │ │ ├── Tile.vue │ │ └── Wrapper.vue │ └── Repositories │ │ ├── Container.vue │ │ └── Tile.vue ├── composables │ └── utils.ts ├── layouts │ ├── default.vue │ ├── landings.vue │ └── playground.vue └── pages │ ├── components │ ├── auth │ │ └── index.vue │ ├── contact │ │ └── index.vue │ ├── cta │ │ └── index.vue │ ├── faq │ │ └── index.vue │ ├── features │ │ └── index.vue │ ├── footers │ │ └── index.vue │ ├── gallery │ │ └── index.vue │ ├── headers │ │ └── index.vue │ ├── hero │ │ └── index.vue │ ├── index.vue │ ├── logos │ │ └── index.vue │ └── testimonials │ │ └── index.vue │ ├── contribution.vue │ ├── index.vue │ ├── instructions.vue │ ├── landings │ ├── [name].vue │ └── index.vue │ ├── playground.vue │ └── repositories │ └── index.vue ├── bun.lock ├── content ├── 1.headers │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ └── 7.md ├── 10.auth │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md ├── 11.gallery │ ├── 1.md │ └── 2.md ├── 2.hero │ ├── 1.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 14.md │ ├── 15.md │ ├── 16.md │ ├── 17.md │ ├── 18.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ └── 9.md ├── 3.features │ ├── 1.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ └── 9.md ├── 4.footers │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ └── 8.md ├── 5.cta │ ├── 1.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ └── 9.md ├── 6.testimonials │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ └── 6.md ├── 7.contact │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md ├── 8.logos │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ └── 6.md ├── 9.faq │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md ├── contribution.md ├── instructions.md └── landings │ ├── 1.simple.md │ ├── 2.showcase.md │ ├── 3.saas.md │ └── 4.agency.md ├── nuxt.config.ts ├── package.json ├── public ├── favicon.svg └── og-landinuxt.jpg ├── tailwind.config.ts ├── tsconfig.json └── types ├── index.ts └── templates.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/README.md -------------------------------------------------------------------------------- /app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/app.config.ts -------------------------------------------------------------------------------- /app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/app.vue -------------------------------------------------------------------------------- /app/assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/assets/css/global.css -------------------------------------------------------------------------------- /app/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/assets/css/main.css -------------------------------------------------------------------------------- /app/components/App/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/Footer.vue -------------------------------------------------------------------------------- /app/components/App/FullLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/FullLoading.vue -------------------------------------------------------------------------------- /app/components/App/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/Header.vue -------------------------------------------------------------------------------- /app/components/App/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/Layout.vue -------------------------------------------------------------------------------- /app/components/App/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/Logo.vue -------------------------------------------------------------------------------- /app/components/App/SwitchMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/SwitchMode.vue -------------------------------------------------------------------------------- /app/components/App/SwitchPrimaryColor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/App/SwitchPrimaryColor.vue -------------------------------------------------------------------------------- /app/components/Elements/Auth/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Auth/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Auth/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Auth/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Auth/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Auth/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Auth/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Auth/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Auth/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Auth/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Auth/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Auth/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/1.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/10.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/10.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/11.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/11.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/12.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/12.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/13.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/13.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/2.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/3.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/4.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/5.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/6.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/7.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/7.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/8.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/8.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/9.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/9.vue -------------------------------------------------------------------------------- /app/components/Elements/CTA/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/CTA/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Contact/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Contact/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Contact/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Contact/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Contact/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Contact/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Contact/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Contact/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Contact/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Contact/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Contact/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Contact/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Container.vue -------------------------------------------------------------------------------- /app/components/Elements/FAQ/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/FAQ/1.vue -------------------------------------------------------------------------------- /app/components/Elements/FAQ/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/FAQ/2.vue -------------------------------------------------------------------------------- /app/components/Elements/FAQ/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/FAQ/3.vue -------------------------------------------------------------------------------- /app/components/Elements/FAQ/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/FAQ/4.vue -------------------------------------------------------------------------------- /app/components/Elements/FAQ/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/FAQ/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/10.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/10.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/11.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/11.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/12.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/12.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/13.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/13.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/6.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/7.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/7.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/8.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/8.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/9.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/9.vue -------------------------------------------------------------------------------- /app/components/Elements/Features/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Features/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/6.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/7.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/7.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/8.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/8.vue -------------------------------------------------------------------------------- /app/components/Elements/Footers/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Footers/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Gallery/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Gallery/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Gallery/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Gallery/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Gallery/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Gallery/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Header.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/6.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/7.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/7.vue -------------------------------------------------------------------------------- /app/components/Elements/Headers/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Headers/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/10.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/10.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/11.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/11.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/12.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/12.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/13.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/13.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/14.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/14.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/15.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/15.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/16.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/16.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/17.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/17.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/18.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/18.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/6.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/7.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/7.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/8.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/8.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/9.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/9.vue -------------------------------------------------------------------------------- /app/components/Elements/Hero/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Hero/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/6.vue -------------------------------------------------------------------------------- /app/components/Elements/Logos/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Logos/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/1.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/2.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/3.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/4.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/5.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/6.vue -------------------------------------------------------------------------------- /app/components/Elements/Testimonials/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Testimonials/Cover.vue -------------------------------------------------------------------------------- /app/components/Elements/Tile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Tile.vue -------------------------------------------------------------------------------- /app/components/Elements/Wrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Elements/Wrapper.vue -------------------------------------------------------------------------------- /app/components/Landing/CTA.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Landing/CTA.vue -------------------------------------------------------------------------------- /app/components/Landing/Features.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Landing/Features.vue -------------------------------------------------------------------------------- /app/components/Landing/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Landing/Hero.vue -------------------------------------------------------------------------------- /app/components/LandingPages/1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/1.vue -------------------------------------------------------------------------------- /app/components/LandingPages/2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/2.vue -------------------------------------------------------------------------------- /app/components/LandingPages/3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/3.vue -------------------------------------------------------------------------------- /app/components/LandingPages/4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/4.vue -------------------------------------------------------------------------------- /app/components/LandingPages/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/Container.vue -------------------------------------------------------------------------------- /app/components/LandingPages/Tile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/Tile.vue -------------------------------------------------------------------------------- /app/components/LandingPages/Wrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/LandingPages/Wrapper.vue -------------------------------------------------------------------------------- /app/components/Repositories/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Repositories/Container.vue -------------------------------------------------------------------------------- /app/components/Repositories/Tile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/components/Repositories/Tile.vue -------------------------------------------------------------------------------- /app/composables/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/composables/utils.ts -------------------------------------------------------------------------------- /app/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/layouts/default.vue -------------------------------------------------------------------------------- /app/layouts/landings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/layouts/landings.vue -------------------------------------------------------------------------------- /app/layouts/playground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/layouts/playground.vue -------------------------------------------------------------------------------- /app/pages/components/auth/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/auth/index.vue -------------------------------------------------------------------------------- /app/pages/components/contact/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/contact/index.vue -------------------------------------------------------------------------------- /app/pages/components/cta/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/cta/index.vue -------------------------------------------------------------------------------- /app/pages/components/faq/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/faq/index.vue -------------------------------------------------------------------------------- /app/pages/components/features/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/features/index.vue -------------------------------------------------------------------------------- /app/pages/components/footers/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/footers/index.vue -------------------------------------------------------------------------------- /app/pages/components/gallery/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/gallery/index.vue -------------------------------------------------------------------------------- /app/pages/components/headers/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/headers/index.vue -------------------------------------------------------------------------------- /app/pages/components/hero/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/hero/index.vue -------------------------------------------------------------------------------- /app/pages/components/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/index.vue -------------------------------------------------------------------------------- /app/pages/components/logos/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/logos/index.vue -------------------------------------------------------------------------------- /app/pages/components/testimonials/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/components/testimonials/index.vue -------------------------------------------------------------------------------- /app/pages/contribution.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/contribution.vue -------------------------------------------------------------------------------- /app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/index.vue -------------------------------------------------------------------------------- /app/pages/instructions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/instructions.vue -------------------------------------------------------------------------------- /app/pages/landings/[name].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/landings/[name].vue -------------------------------------------------------------------------------- /app/pages/landings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/landings/index.vue -------------------------------------------------------------------------------- /app/pages/playground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/playground.vue -------------------------------------------------------------------------------- /app/pages/repositories/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/app/pages/repositories/index.vue -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/bun.lock -------------------------------------------------------------------------------- /content/1.headers/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/1.md -------------------------------------------------------------------------------- /content/1.headers/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/2.md -------------------------------------------------------------------------------- /content/1.headers/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/3.md -------------------------------------------------------------------------------- /content/1.headers/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/4.md -------------------------------------------------------------------------------- /content/1.headers/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/5.md -------------------------------------------------------------------------------- /content/1.headers/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/6.md -------------------------------------------------------------------------------- /content/1.headers/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/1.headers/7.md -------------------------------------------------------------------------------- /content/10.auth/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/10.auth/1.md -------------------------------------------------------------------------------- /content/10.auth/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/10.auth/2.md -------------------------------------------------------------------------------- /content/10.auth/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/10.auth/3.md -------------------------------------------------------------------------------- /content/10.auth/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/10.auth/4.md -------------------------------------------------------------------------------- /content/10.auth/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/10.auth/5.md -------------------------------------------------------------------------------- /content/11.gallery/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/11.gallery/1.md -------------------------------------------------------------------------------- /content/11.gallery/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/11.gallery/2.md -------------------------------------------------------------------------------- /content/2.hero/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/1.md -------------------------------------------------------------------------------- /content/2.hero/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/10.md -------------------------------------------------------------------------------- /content/2.hero/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/11.md -------------------------------------------------------------------------------- /content/2.hero/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/12.md -------------------------------------------------------------------------------- /content/2.hero/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/13.md -------------------------------------------------------------------------------- /content/2.hero/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/14.md -------------------------------------------------------------------------------- /content/2.hero/15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/15.md -------------------------------------------------------------------------------- /content/2.hero/16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/16.md -------------------------------------------------------------------------------- /content/2.hero/17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/17.md -------------------------------------------------------------------------------- /content/2.hero/18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/18.md -------------------------------------------------------------------------------- /content/2.hero/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/2.md -------------------------------------------------------------------------------- /content/2.hero/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/3.md -------------------------------------------------------------------------------- /content/2.hero/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/4.md -------------------------------------------------------------------------------- /content/2.hero/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/5.md -------------------------------------------------------------------------------- /content/2.hero/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/6.md -------------------------------------------------------------------------------- /content/2.hero/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/7.md -------------------------------------------------------------------------------- /content/2.hero/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/8.md -------------------------------------------------------------------------------- /content/2.hero/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/2.hero/9.md -------------------------------------------------------------------------------- /content/3.features/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/1.md -------------------------------------------------------------------------------- /content/3.features/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/10.md -------------------------------------------------------------------------------- /content/3.features/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/11.md -------------------------------------------------------------------------------- /content/3.features/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/12.md -------------------------------------------------------------------------------- /content/3.features/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/13.md -------------------------------------------------------------------------------- /content/3.features/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/2.md -------------------------------------------------------------------------------- /content/3.features/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/3.md -------------------------------------------------------------------------------- /content/3.features/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/4.md -------------------------------------------------------------------------------- /content/3.features/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/5.md -------------------------------------------------------------------------------- /content/3.features/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/6.md -------------------------------------------------------------------------------- /content/3.features/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/7.md -------------------------------------------------------------------------------- /content/3.features/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/8.md -------------------------------------------------------------------------------- /content/3.features/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/3.features/9.md -------------------------------------------------------------------------------- /content/4.footers/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/1.md -------------------------------------------------------------------------------- /content/4.footers/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/2.md -------------------------------------------------------------------------------- /content/4.footers/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/3.md -------------------------------------------------------------------------------- /content/4.footers/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/4.md -------------------------------------------------------------------------------- /content/4.footers/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/5.md -------------------------------------------------------------------------------- /content/4.footers/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/6.md -------------------------------------------------------------------------------- /content/4.footers/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/7.md -------------------------------------------------------------------------------- /content/4.footers/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/4.footers/8.md -------------------------------------------------------------------------------- /content/5.cta/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/1.md -------------------------------------------------------------------------------- /content/5.cta/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/10.md -------------------------------------------------------------------------------- /content/5.cta/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/11.md -------------------------------------------------------------------------------- /content/5.cta/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/12.md -------------------------------------------------------------------------------- /content/5.cta/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/13.md -------------------------------------------------------------------------------- /content/5.cta/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/2.md -------------------------------------------------------------------------------- /content/5.cta/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/3.md -------------------------------------------------------------------------------- /content/5.cta/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/4.md -------------------------------------------------------------------------------- /content/5.cta/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/5.md -------------------------------------------------------------------------------- /content/5.cta/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/6.md -------------------------------------------------------------------------------- /content/5.cta/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/7.md -------------------------------------------------------------------------------- /content/5.cta/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/8.md -------------------------------------------------------------------------------- /content/5.cta/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/5.cta/9.md -------------------------------------------------------------------------------- /content/6.testimonials/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/6.testimonials/1.md -------------------------------------------------------------------------------- /content/6.testimonials/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/6.testimonials/2.md -------------------------------------------------------------------------------- /content/6.testimonials/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/6.testimonials/3.md -------------------------------------------------------------------------------- /content/6.testimonials/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/6.testimonials/4.md -------------------------------------------------------------------------------- /content/6.testimonials/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/6.testimonials/5.md -------------------------------------------------------------------------------- /content/6.testimonials/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/6.testimonials/6.md -------------------------------------------------------------------------------- /content/7.contact/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/7.contact/1.md -------------------------------------------------------------------------------- /content/7.contact/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/7.contact/2.md -------------------------------------------------------------------------------- /content/7.contact/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/7.contact/3.md -------------------------------------------------------------------------------- /content/7.contact/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/7.contact/4.md -------------------------------------------------------------------------------- /content/7.contact/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/7.contact/5.md -------------------------------------------------------------------------------- /content/8.logos/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/8.logos/1.md -------------------------------------------------------------------------------- /content/8.logos/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/8.logos/2.md -------------------------------------------------------------------------------- /content/8.logos/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/8.logos/3.md -------------------------------------------------------------------------------- /content/8.logos/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/8.logos/4.md -------------------------------------------------------------------------------- /content/8.logos/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/8.logos/5.md -------------------------------------------------------------------------------- /content/8.logos/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/8.logos/6.md -------------------------------------------------------------------------------- /content/9.faq/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/9.faq/1.md -------------------------------------------------------------------------------- /content/9.faq/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/9.faq/2.md -------------------------------------------------------------------------------- /content/9.faq/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/9.faq/3.md -------------------------------------------------------------------------------- /content/9.faq/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/9.faq/4.md -------------------------------------------------------------------------------- /content/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/contribution.md -------------------------------------------------------------------------------- /content/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/instructions.md -------------------------------------------------------------------------------- /content/landings/1.simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/landings/1.simple.md -------------------------------------------------------------------------------- /content/landings/2.showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/landings/2.showcase.md -------------------------------------------------------------------------------- /content/landings/3.saas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/landings/3.saas.md -------------------------------------------------------------------------------- /content/landings/4.agency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/content/landings/4.agency.md -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/og-landinuxt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/public/og-landinuxt.jpg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesswhite/landinuxt/HEAD/types/templates.ts --------------------------------------------------------------------------------