npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nextjs-generic-landing-page

v1.3.0

Published

A generic landing page template, built in Next.js (React) with static HTML export

Downloads

40

Readme

Next.js generic landing page template

A generic landing page template, built in Next.js (React) with static HTML export.

Can be used as:

  1. Hosted Next.js site
  2. Use yarn export to export pure HTML pages

Note: if you need a template for a complete PWA web app (with database etc) in Next.js, check out nextjs-pwa-firebase-boilerplate.

nextjs-generic-landing-page

Support this project

Did you or your company find nextjs-generic-landing-page useful? Please consider giving a small donation, it helps me spend more time on open-source projects:

Support Tom on Ko-Fi.com

Why is this awesome?

This is a great template for a any project where you want React (with static site generation (SSG) or server-side rendering (SSR), powered by Next.js) as frontend. Lightning fast, all JavaScript.

  • Great starting point for a landing page or simple website.
  • Use yarn export to export pure HTML pages.
  • Prepared for PWA features with a manifest.json.
  • Can use SSG getStaticProps or SSR getServerSideProps.
  • Easy to style the visual theme using CSS (e.g. using Design Profile Generator).
  • Google Analytics and google-site-verification support (see config/config.js).
  • Flexible configuration with config/config.js and .env.local file.
  • Code linting and formatting with StandardJS (yarn lint/yarn fix).
  • Unit testing with Jasmine (yarn unit, not yet included).
  • Good page speed, see Lighthouse score:

Lighthouse score

Demo

Demo of nextjs-generic-landing-page hosted on Vercel

How to use

How to use 1: Clone the entire project

Clone this repository:

git clone https://github.com/tomsoderlund/nextjs-generic-landing-page.git [MY_APP]

Remove the .git folder (since you want to create a new repository) and other template stuff:

rm -rf .git docs/ public/features/*.jpg

Install dependencies:

cd [MY_APP]
yarn  # or npm install

Run:

yarn dev

Export static HTML:

yarn export

Test the static HTML:

cd out
python -m SimpleHTTPServer

How to use 2: Import just the components you need

https://www.npmjs.com/package/nextjs-generic-landing-page

yarn add nextjs-generic-landing-page  # or npm install nextjs-generic-landing-page

Then in your code:

import { Headline, Video } from 'nextjs-generic-landing-page'

<Headline
  title='My Website'
  description='Maybe the best website ever'
/>

See pages/index.js for examples on how to use the components.

Styling

Modify public/theme.css (public/app.css is more structural).

You can add fonts in components/page/PageHead.js.

Removing landing page components

If you want to use this as a Next.js boilerplate, without landing page stuff:

rm pages/standalone.js
rm components/index.js
rm -rf components/landing
rm -rf components/social

Update the NPM package

yarn publish  # will run 'yarn prepublish' before

Todo:

  • [ ] Make it look more like https://airfocus.com/
  • Components
    • [x] Title/Tagline
    • [x] Footer
    • [x] Signup form
    • [x] Image
    • [x] Video
    • [x] 3 features
    • [x] Google Analytics with page & event logging
    • [x] Pricing/product comparison table
    • [x] Testimonials (3 people)
    • [ ] Login link
    • [x] React Social Share & Follow
    • [ ] Try the app (interactive)