The offical landing page for Quakemap. Built using React and other open source technologies.
Software | Version |
---|---|
Git | 2.20.1+ |
Node | 10.15.0+ |
npm i
npm run dev
Create and merge a Pull Request into the main branch.
The production site is automatically deployed to https://quakemap.vercel.app/.
.
├── ...
├── src
│ ├── app
│ │ ├── eula
│ │ │ ├── page.tsx # Eula page
│ │ │ └── ...
│ │ ├── faq
│ │ │ ├── page.tsx # FAQ page
│ │ │ └── ...
│ │ ├── privacy
│ │ │ ├── page.tsx # Privacy Policy page
│ │ │ └── ...
│ │ ├── page.tsx # Home page
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ └── ...
│ ├── components # Components
│ │ └── ...
│ └── data # Content
│ └── ...
├── public # Images
│ └── ...
├── next.config.ts # Next config
├── postcss.config.mjs # Post CSS config
├── tailwind.config.ts # Tailwind config
└── ...