about page styling.
This commit is contained in:
parent
69e05fd396
commit
bdf8e10be0
11
components/Navbar.js
Normal file
11
components/Navbar.js
Normal file
@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
|
||||
const Navbar = () => {
|
||||
return (
|
||||
<div class="nav-wrapper">
|
||||
<a class="home" href="/">Home</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Navbar;
|
@ -2,14 +2,16 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>About Us</title>
|
||||
<link rel="stylesheet" type="text/css" href="./../styles/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="whole-wrapper">
|
||||
<div class="nav-wrapper">
|
||||
<a class="home" href="/">Home</a>
|
||||
<a class="about" href="/about">About</a>
|
||||
<a class="register" href="/register">Register</a>
|
||||
</div>
|
||||
<div class="title-wrapper">
|
||||
<div class="about-title-wrapper">
|
||||
<h1 class="about-title">About Us</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -61,3 +61,7 @@ body {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.about-title {
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user