diff --git a/frontend/src/components/Nav.js b/frontend/src/components/Nav.js index 622d2b6..4cf154b 100644 --- a/frontend/src/components/Nav.js +++ b/frontend/src/components/Nav.js @@ -18,7 +18,7 @@ const Nav = (props) => { <ul className="navbar-nav mr-auto"> <li className="nav-item"> <a className="nav-link text-white" href="/about"> - PoliTalk/Openly <span className="sr-only">(current)</span> + ThinkOpenly <span className="sr-only">(current)</span> </a> </li> <li className="nav-item"> diff --git a/frontend/src/components/Post.js b/frontend/src/components/Post.js index dce1eb4..5f44720 100644 --- a/frontend/src/components/Post.js +++ b/frontend/src/components/Post.js @@ -5,7 +5,7 @@ const Post = (props) => { user: { username: "HyperionLegion" }, post_title: "CLIMATE CHANGE", post_text: "We are gonna die if we don't do anything about climate change!", - upvotes: 0, + upvotes: 2, topics: ["climate change", "death"], comments: [ "this guy is weird", diff --git a/frontend/src/components/Profile.js b/frontend/src/components/Profile.js index b176e99..fc66489 100644 --- a/frontend/src/components/Profile.js +++ b/frontend/src/components/Profile.js @@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react"; const Profile = (props) => { const [state, setState] = useState({ - user: { username: "" }, + user: { username: "HyperionLegion" }, topics: ["climate change", "covid19"], }); const [stocks, setStocks] = useState([]);