/goldprairie-website

Archive of the Gold Prairie website homepage

Primary LanguageVue

Gold Prairie Website Archive

A reconstructed version of the home page of the Gold Prairie website found in the Internet Archive (archived on 07/05/2019):

Internet Archive - www.goldprairie.com - July, 5 2019

Site is a single static page; all nav bar items are non-functioning. It's recreated here as a sample of earlier work for my startup portfolio.

Demo URL

https://goldprairie.natewilliams.dev

Technologies used

Notes

  • Carousel used for the hero area is a custom built Vue component
  • Button styling was updated slightly from the original
  • Icons are from Google's material icon set
  • Images are all from Unsplash

Image sources

Installation and setup

  1. Install dependencies
npm install
  1. Run the project for local dev -- this will run Vite and start a hot-reloading server at localhost:3000
npm run dev
  1. Build the app for deployment & serve preview at localhost:3000
# Run the build command (vite build)
npm run build

# Preview the deployment locally using Vite as a server (vite preview)
npm run preview