diff --git a/frontend/tone-teller/public/images/banner.png b/frontend/tone-teller/public/images/banner.png index 9bd6514..6150c49 100644 Binary files a/frontend/tone-teller/public/images/banner.png and b/frontend/tone-teller/public/images/banner.png differ diff --git a/frontend/tone-teller/public/images/loop.svg b/frontend/tone-teller/public/images/loop.svg new file mode 100644 index 0000000..30008d4 --- /dev/null +++ b/frontend/tone-teller/public/images/loop.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/tone-teller/src/App.css b/frontend/tone-teller/src/App.css index 81534a2..bb2622c 100644 --- a/frontend/tone-teller/src/App.css +++ b/frontend/tone-teller/src/App.css @@ -53,13 +53,13 @@ p { .heading-1 { font-family: Abyss; - font-size: 4.5rem; /* 72px */ + font-size: 3.5rem; line-height: 1; } .heading-2 { font-family: Abyss; - font-size: 3.75rem; /* 60px */ + font-size: 3.125rem; /* 60px */ line-height: 1; margin-bottom: 30px; } @@ -100,14 +100,14 @@ p { .body-text { font-family: 'Cantarell'; - font-size: 1rem; + font-size: 1.125rem; line-height: 1.5rem; } .body-title { font-family: 'Cantarell'; font-size: 1rem; - line-height: 1.5rem; + line-height: 1.125rem; font-weight: 700; } @@ -120,7 +120,7 @@ p { .overline-text { font-family: 'Cantarell'; font-weight: 700; - font-size: 0.75rem; /* 12px */ + font-size: 0.875rem; /* 12px */ line-height: 1rem; /* 16px */ letter-spacing: 0.12em; text-transform: uppercase; @@ -136,6 +136,12 @@ p { border-radius: 10px; } + +.button-sm { + padding: 8px 12px !important; + box-shadow: 4px 4px 0px #000000; +} + .background-white { background-color: var(--white); } @@ -233,4 +239,4 @@ p { background-repeat: no-repeat; color: #fff; font-size: 100px; - } + } \ No newline at end of file diff --git a/frontend/tone-teller/src/App.js b/frontend/tone-teller/src/App.js index 04772a4..e8612a5 100644 --- a/frontend/tone-teller/src/App.js +++ b/frontend/tone-teller/src/App.js @@ -1,17 +1,15 @@ import React from "react"; -import Hero from "./components/Hero"; -import LandingContent from "./components/LandingContent"; import "./App.css"; // import the landing page from the components folder import NavHeader from "./components/NavHeader"; -import Footer from "./components/Footer"; +import Toneteller from "./components/Toneteller"; +import Home from "./components/Home"; import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; -// import About from './components/pages/About'; -import ChromeExtension from './components/pages/ChromeExtension'; -import FAQ from './components/pages/FAQ'; -import ToneTeller from './components/pages/ToneTeller'; +import About from "./components/pages/About"; +import ChromeExtension from "./components/pages/ChromeExtension"; +import FAQ from "./components/pages/FAQ"; function App() { return ( @@ -21,13 +19,12 @@ function App() { {/* */} - } /> - } /> + } /> } /> - }> - } /> + }> + } /> -