Skip to content

Instantly share code, notes, and snippets.

View milanchheda's full-sized avatar
🎯
Focusing

Milan Chheda milanchheda

🎯
Focusing
View GitHub Profile
<div>
<div class="w-full bg-teal-light shadow">
<div class="container mx-auto">
<div class="w-full flex justify-between items-center py-4 px-8 font-bold">
<div class="text-center text-white">Company Name</div>
<div class="items-center hidden sm:flex">
<a href="#" class="text-white hover:text-teal-lightest no-underline mx-2 px-2 py-2">Services</a>
<a href="#" class="text-white hover:text-teal-lightest no-underline mx-2 px-2 py-2">About Us</a>
<a href="#" class="bg-teal-dark hover:bg-teal-darker rounded-full text-white no-underline mx-2 px-4 py-2">Contact Us</a>
</div>
@milanchheda
milanchheda / ec2_laravel_ubuntu.sh
Last active August 10, 2020 08:32
EC2 user data to install laravel requirements on Ubuntu
#!/usr/bin/env bash
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php -y
sudo apt-get update
sudo apt-get install curl -y
# PHP 7.4 installation steps
sudo apt-get install php7.4 -y