Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Personal landing page website built with QwikCity, TypeScript and Tailwind CSS.

Portfolio library replicating the GitHub UI, built with Next.js, TypeScript, and Tailwind CSS.
Landing is an open-source personal landing page template built with QwikCity, TypeScript, and Tailwind CSS, designed to give developers a fast, deploy-ready portfolio site.
Landing is a personal landing page website that was built from scratch using QwikCity, the meta-framework on top of the Qwik runtime. The project is written entirely in TypeScript and styled with Tailwind CSS, and it is published on GitHub by Hemant Rajput. Its core function is to produce a static, performant personal page that can be run locally with bun or deployed to Vercel or Netlify using the included one-click buttons. The repository also provides PageSpeed Insights report links for desktop and mobile, showing its performance focus.
git clone, degit, or the create-next-app command shown with bunx, giving flexibility in workflow.bun i, and the dev server runs with bun dev; instructions exist to switch to npm, pnpm, or yarn by removing bun.lockb..tsx files in src/routes.src/routes/index.tsx and replacing the placeholder content with your name, links, and projects.Clone the repository with git clone https://github.com/rajput-hemant/landing, install dependencies with bun i, and start the development server with bun dev. The site is served at http://localhost:5173, and the main page source lives in src/routes/index.tsx. For deployment, click the Vercel or Netlify button in the README, or push the repository to either platform directly.
The template defaults to bun, as indicated by the presence of bun.lockb and the bun commands in the README. If you prefer pnpm, npm, or yarn, you can delete bun.lockb and run the appropriate install command to generate a new lock file.
Yes, the project is licensed under the MIT License, which allows you to use, copy, modify, merge, publish, distribute, sublicense, and sell copies of the software. The license file is included in the repository.
The README includes one-click deploy buttons for both Vercel and Netlify. Clicking the button will guide you through linking the GitHub repository and creating a new project, and the site will be live after the build completes.
The main page is defined in src/routes/index.tsx. You can edit the JSX to change the text, links, and structure, and Tailwind classes control the visual styling.
QwikCity is a meta-framework for Qwik that adds file-based routing, layouts, and server endpoints. This template uses QwikCity to organize the page structure, and it is the core foundation of the codebase.