Skip to content

Latest commit

 

History

History
94 lines (77 loc) · 2.55 KB

README.md

File metadata and controls

94 lines (77 loc) · 2.55 KB
Logo

Website for Simplified Web.Dev, a web development agency focused on building custom websites for small businesses on an affordable plan. Built with Next.js and Tailwind CSS, hosted on Vercel.

How To UseColor ReferenceLicense

demo

How To Use

To clone and run this application, you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
$ git clone git@github.com:oarnosa/simplifiedweb.dev.git

# Go into the repository
$ cd simplifiedweb.dev

# Install dependencies
$ npm install

# Run the app
$ npm run dev

Emails are sent using nodemailer and setup with a Gmail account. Two environment variables must be defined for it to work:

# .env
EMAIL={YOUR_GMAIL_ACCOUNT}
EMAIL_PASS={YOUR_GMAIL_APP_PASSWORD} # Must be a generated App Password

For Google Analytics to work, the G-Tag must also be defined in environment variables:

# .env
GA_TRACKING_ID={YOUR_G_TRACKING_ID}

Color Reference

Color HEX RGB HLS
White #FFFFFF rgb(255, 255, 255) hls(0, 0%, 100%)
Black #0A0A0A rgb(10, 10, 10) hls(0, 0%, 3%)
Ligh Gray #E5E7EB rgb(229, 231, 235) hls(220, 13%, 90%)
Dark Blue #001E3D rgb(0, 30, 61) hls(210, 100%, 12%)
Orange #F15927 rgb(241, 89, 39) hls(15, 88%, 55%)

License