Skip to content

mlaurel/qwik-landing-template

Repository files navigation

πŸ’  Qwind

Qwind is a free and open-source template to make your website using Qwik + Tailwind CSS. Ready to start a new project and designed taking into account best practices.

Features

  • βœ… Integration with Tailwind CSS supporting Dark mode.
  • βœ… Production-ready scores in Lighthouse and PageSpeed Insights reports.
  • βœ… Image optimization and Font optimization.

Qwind Theme Screenshot

onWidget License Maintained Contributions Welcome Known Vulnerabilities


Table of Contents

Demo

πŸ“Œ https://qwind.pages.dev/


Getting started

This project is using Qwik with QwikCity. QwikCity is just a extra set of tools on top of Qwik to make it easier to build a full site, including directory-based routing, layouts, and more.

Project structure

Inside Qwind template, you'll see the following folders and files:

/
β”œβ”€β”€ adaptors/
|   └── static/
|       └── vite.config.ts
β”œβ”€β”€ public/
β”‚   β”œβ”€β”€ favicon.svg
β”‚   β”œβ”€β”€ manifest.json
β”‚   └── robots.txt
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ assets/
β”‚   β”‚   β”œβ”€β”€ images/
|   |   └── styles/
|   |       └── global.css
β”‚   β”œβ”€β”€ components/
β”‚   β”‚   β”œβ”€β”€ atoms/
β”‚   β”‚   β”œβ”€β”€ core/
β”‚   β”‚   β”œβ”€β”€ icons/
|   |   └── widgets/
|   |       β”œβ”€β”€ Header.astro
|   |       β”œβ”€β”€ Footer.astro
|   |       └── ...
β”‚   β”œβ”€β”€ content/
β”‚   |   β”œβ”€β”€ blog/
β”‚   |   |   β”œβ”€β”€ post-slug-1.md
β”‚   |   |   β”œβ”€β”€ post-slug-2.md
β”‚   |   |   └── ...
β”‚   β”œβ”€β”€ routes/
β”‚   |   β”œβ”€β”€ blog/
β”‚   |   β”œβ”€β”€ index.astro
|   |   β”œβ”€β”€ layout.tsx
|   |   β””-- service-worker.ts
β”‚   β”œβ”€β”€ config.mjs
β”‚   β”œβ”€β”€ entry.dev.tsx
β”‚   β”œβ”€β”€ entry.preview.tsx
β”‚   β”œβ”€β”€ entry.ssr.tsx
β”‚   └── root.tsx
β”œβ”€β”€ package.json
└── ...
  • src/routes: Provides the directory based routing, which can include a hierarchy of layout.tsx layout files, and an index.tsx file as the page. Additionally, index.ts files are endpoints. Please see the routing docs for more info.

  • src/components: Recommended directory for components.

  • public: Any static assets, like images, can be placed in the public directory. Please see the Vite public directory for more info.

Edit Qwind on CodeSandbox

Seasoned qwik expert? Delete this file. Update config.mjs and contents. Have fun!


Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at 127.0.0.1:5173/
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run fmt Format codes with Prettier
npm run lint Run Eslint
npm run qwik ... Run CLI commands like qwik add, qwik build

Configuration

Basic configuration file: ./src/config.mjs

export const SITE = {
  name: "Example",

  origin: "https://example.com",
  basePathname: "/", // Change this if you need to deploy to Github Pages, for example
  trailingSlash: true, // Generate permalinks with or without "/" at the end
};

Deploy

Deploy to production (manual)

You can create an optimized production build with:

npm run build

Now, your website is ready to be deployed. All generated files are located at dist folder, which you can deploy the folder to any hosting service you prefer.

Deploy to Netlify

Clone this repository on own GitHub account and deploy to Netlify:

Netlify Deploy button

Deploy to Vercel

Clone this repository on own GitHub account and deploy to Vercel:

Deploy with Vercel


Roadmap

Base

  • Create utilities to generate permalinks tailored to the domain and base pathname.
  • Simplify the way to optimize images.
  • Create component to make SEO simpler and more intuitive.
  • Create configurable blog with categories, tags and authors using MDX.
  • Add more frequently used pages (Portfolio, Services, Contact, Docs ...).
  • Find or create a library to have more icon sources available.
  • Refactor some code that doesn't follow Qwik conventions yet.

Advanced

  • Achieve perfect 100% Google Page Speed score.
  • Insert complex javascript example widget on home page to demonstrate Qwik features.
  • Create small illustrative admin backend.

Contributing

If you have any idea, suggestions or find any bugs, feel free to open a discussion, an issue or create a pull request. That would be very useful for all of us and we would be happy to listen and take action.

Acknowledgements

Initially created by onWidget and maintained by a community of contributors.

License

Qwind is licensed under the MIT license β€” see the LICENSE file for details.

Netlify

This starter site is configured to deploy to Netlify Edge Functions, which means it will be rendered at an edge location near to your users.

Local development

The Netlify CLI can be used to preview a production build locally. To do so: First build your site, then to start a local server, run:

  1. Install Netlify CLI globally npm i -g netlify-cli.
  2. Build your site with both ssr and static npm run build.
  3. Start a local server with npm run serve. In this project, npm run serve uses the netlify dev command to spin up a server that can handle Netlify's Edge Functions locally.
  4. Visit http://localhost:8888/ to check out your site.

Edge Functions Declarations

Netlify Edge Functions declarations can be configured to run on specific URL patterns. Each edge function declaration associates one site path pattern with one function to execute on requests that match the path. A single request can execute a chain of edge functions from a series of declarations. A single edge function can be associated with multiple paths across various declarations.

This is useful to determine if a page response should be Server-Side Rendered (SSR) or if the response should use a static-site generated (SSG) index.html file instead.

By default, the Netlify Edge adaptor will generate a .netlify/edge-middleware/manifest.json file, which is used by the Netlify deployment to determine which paths should, and should not, use edge functions.

To override the generated manifest, you can add a declaration to the netlify.toml using the [[edge_functions]] config. For example:

[[edge_functions]]
  path = "/admin"
  function = "auth"

Deployments

You can deploy your site to Netlify either via a Git provider integration or through the Netlify CLI. This starter site includes a netlify.toml file to configure your build for deployment.

Deploying via Git

Once your site has been pushed to your Git provider, you can either link it in the Netlify UI or use the CLI. To link your site to a Git provider from the Netlify CLI, run the command:

netlify link

This sets up continuous deployment for your site's repo. Whenever you push new commits to your repo, Netlify starts the build process..

Deploying manually via the CLI

If you wish to deploy from the CLI rather than using Git, you can use the command:

netlify deploy --build

You must use the --build flag whenever you deploy. This ensures that the Edge Functions that this starter site relies on are generated and available when you deploy your site.

Add --prod flag to deploy to production.

About

Qwik City landing page template

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published