This commit is contained in:
ruchi 2021-03-31 18:22:50 -04:00
parent 611fa53ac9
commit 50e33ee4d4
9 changed files with 135 additions and 20417 deletions

20532
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -12,6 +12,7 @@
"react-bootstrap-carousel": "^4.1.1",
"react-dom": "^17.0.2",
"react-google-maps": "^9.4.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"spectre.css": "^0.5.9",
"web-vitals": "^1.1.1"

View file

@ -12,7 +12,7 @@
}
.center{
height: 25vh; /* Magic here */
background-color: yellow;
background-color: #e7dec8;
display: flex;
justify-content: center;
align-items: center;

View file

@ -1,5 +1,5 @@
.colored-section {
background-color: #ffe609;
background-color: #e7dec8;
color: #000000;
white-space: nowrap;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

View file

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

View file

@ -1,3 +1,11 @@
.Navbar{
background-color: pink;
}
background-color: #30475e;
}
.navbar-brand{
color: #5b83aa;
padding-left:20px;
}

View file

@ -1,13 +1,14 @@
import React from "react";
import { Link, withRouter } from "react-router-dom";
import "./Navbar.css";
import logo from './logo2.png';
/* eslint-disable jsx-a11y/anchor-is-valid */
const Navbar = () => {
return (
/* Nav Bar */
<div className="Navbar">
<nav class="navbar navbar-expand-lg navbar-dark">
<img src=""></img>
<img src={logo} width="40" height="40"></img>
<a href="/" class="navbar-brand">
Kene's Cribs
</a>

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB