Skip to content

Commit

Permalink
Update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
wcedmisten committed May 4, 2024
1 parent daf76c4 commit a4ac5f3
Show file tree
Hide file tree
Showing 18 changed files with 308 additions and 21 deletions.
10 changes: 4 additions & 6 deletions components/NavbarHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ export default function NavbarHeader() {
<div>
<img
alt=""
src="/logo.png"
width="50px"
height="50px"
className={style.NavbarImage}
src="/owl-banner.svg"
width="210px"
height="80px"
/>
<p className={style.NavBarLogoText}>William Edmisten</p>
</div>
</Navbar.Brand>
</Link>
Expand All @@ -30,7 +28,7 @@ export default function NavbarHeader() {
aria-controls="basic-navbar-nav" />
<Navbar.Collapse id="basic-navbar-nav" className="justify-content-end">
<div className="d-flex justify-content-end">
<Nav activeKey="/" onSelect={() => setExpanded(false)}>
<Nav onSelect={() => setExpanded(false)}>
<Link href="/" passHref>
<Nav.Link>Posts</Nav.Link>
</Link>
Expand Down
11 changes: 3 additions & 8 deletions components/navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,11 @@
margin-right: 10px;
}

.NavbarBrand {
font-family: 'Roboto', sans-serif;
font-size: 1.25rem;
padding: 0px 0px 0px 0px;
}

.Navbar {
/* padding-bottom: 50px; */
font-family: 'Roboto', sans-serif;
font-size: 1.5rem
font-family: 'Rowdies', sans-serif;
font-size: 1.5rem;
font-weight: 400;
}

.NavBarLogoText {
Expand Down
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/mstile-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/mstile-310x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/mstile-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/mstile-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
191 changes: 191 additions & 0 deletions public/owl-banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 79 additions & 0 deletions public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
10 changes: 3 additions & 7 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,8 @@ th {
}
}

/* Don't let long links overflow, because they will break
the entire UI on mobile by making everything else smaller */
/* Sometimes a URL won't have a natural place to break,
this tells the browser it can break mid-word in a URL */
.footnotes {
overflow: hidden;
}

a {
overflow: hidden;
overflow-wrap: break-word;
}

0 comments on commit a4ac5f3

Please sign in to comment.