Pushed the final changes Ruchira made.

This commit is contained in:
Batuhan Basoglu 2021-03-31 18:28:19 -04:00
commit da3e5b5e17
8 changed files with 137 additions and 20419 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-bootstrap-carousel": "^4.1.1",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-google-maps": "^9.4.5", "react-google-maps": "^9.4.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3", "react-scripts": "4.0.3",
"spectre.css": "^0.5.9", "spectre.css": "^0.5.9",
"web-vitals": "^1.1.1" "web-vitals": "^1.1.1"

View file

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

View file

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

BIN
src/images/logo1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View file

@ -1,5 +1,13 @@
.Navbar{ .Navbar{
background-color: rgb(56, 55, 55); background-color: #30475e;
padding-top: 20px; padding-top: 20px;
padding-bottom: 24px; padding-bottom: 24px;
} }
.navbar-brand{
color: #5b83aa;
padding-left:20px;
}

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB