diff --git a/index.html b/index.html index add429b..4aa4a15 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + @@ -14,6 +14,10 @@ href="https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,100;0,300;0,400;0,500;1,300&display=swap" rel="stylesheet" /> + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/logo.svg b/public/logo.svg new file mode 100644 index 0000000..affb2df --- /dev/null +++ b/public/logo.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index d957de3..e17ce9a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,24 +1,27 @@ import './App.css'; + import { useState } from 'react'; + +import { ThemeSelector } from 'components/ThemeSelector'; import styled, { ThemeProvider } from 'styled-components'; -import GlobalStyles from './global-styles'; -import { theme as primaryTheme } from './Theme'; -import { Header } from './components/Header'; + import { Footer } from './components/Footer'; +import { Header } from './components/Header'; import StoicQuote from './components/QuoteContainer'; +import GlobalStyles from './global-styles'; +import { theme as primaryTheme } from './Theme'; export const Container = styled.main` - text-align: center; - height: 100vh; - font-size: calc(10px + 2vmin); - display: flex; + height: 100%; + /* text-align: center; */ + /* display: flex; flex-direction: column; - justify-content: space-between; + justify-content: space-between; */ padding: 1rem; `; const TITLE = 'Stoic Quote'; -const COPYRIGHT = 'Natalie Pina \u00A9 2023'; +const COPYRIGHT = 'Natalie Pina \u00A9 2024'; const App = (): React.ReactElement => { const [theme, setTheme] = useState(primaryTheme); @@ -27,7 +30,8 @@ const App = (): React.ReactElement => { -
+ +