Guest User

Untitled

a guest
Nov 8th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // background color! so let's add 'bg-pastelblue' to our outer most div.
  2.  
  3. import React from "react";
  4.  
  5. function Navbar() {
  6.   return (
  7.     <div className="flex flex-row justify-between items-center px-20 py-4 bg-pastelblue">
  8.       {/* TITLE */}
  9.       <div className="text-darkgreen text-3xl poppins-bold hover:text-pastelgreen transition duration-300">
  10.         Ripple & Refresh
  11.       </div>
  12.       {/* PAGES */}
  13.       <div className="flex flex-row gap-8 poppins-semibold text-2xl text-darkblue">
  14.         <p className="hover:text-pastelgreen transition duration-300">map</p>
  15.         <p className="hover:text-pastelgreen transition duration-300">rsvp</p>
  16.         <p className="hover:text-pastelgreen transition duration-300">
  17.           activity
  18.         </p>
  19.       </div>
  20.     </div>
  21.   );
  22. }
  23.  
  24. export default Navbar;
Advertisement
Add Comment
Please, Sign In to add comment