Skip to content

Commit

Permalink
Update logo font to Poppins
Browse files Browse the repository at this point in the history
  • Loading branch information
amits97 committed Oct 14, 2023
1 parent f1e37a9 commit 67f9789
Show file tree
Hide file tree
Showing 14 changed files with 10 additions and 61 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "naadan-chords",
"version": "0.78.4",
"version": "0.78.5",
"homepage": "https://www.naadanchords.com/",
"private": true,
"dependencies": {
Expand Down
43 changes: 0 additions & 43 deletions public/webfonts.css
Original file line number Diff line number Diff line change
@@ -1,46 +1,3 @@
/**
* @license
* MyFonts Webfont Build ID 3732534, 2019-03-11T22:23:24-0400
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
* Webfont: DINNextLTPro-Heavy by Linotype
* URL: https://www.myfonts.com/fonts/linotype/din-next/pro-heavy/
* Copyright: Copyright © 2010, 2016 Linotype GmbH, www.linotype.com. All rights reserved. This font software may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH.
*
* Webfont: DINNextLTPro-Regular by Linotype
* URL: https://www.myfonts.com/fonts/linotype/din-next/pro-regular/
* Copyright: Copyright © 2010 Linotype GmbH, www.linotype.com. All rights reserved. This font software may not be reproduced, modified, disclosed or transferred without the express written approval of Linotype GmbH.
*
*
* License: https://www.myfonts.com/viewlicense?type=web&buildid=3732534
* Licensed pageviews: 10
*
* © 2019 MyFonts Inc
*/

@font-face {
font-family: "DINNextLTPro-Heavy";
src: url("webfonts/38F436_0_0.eot");
src: url("webfonts/38F436_0_0.eot?#iefix") format("embedded-opentype"),
url("webfonts/38F436_0_0.woff") format("woff"),
url("webfonts/38F436_0_0.ttf") format("truetype");
font-display: swap;
}

@font-face {
font-family: "DINNextLTPro-Regular";
src: url("webfonts/38F436_1_0.eot");
src: url("webfonts/38F436_1_0.eot?#iefix") format("embedded-opentype"),
url("webfonts/38F436_1_0.woff") format("woff"),
url("webfonts/38F436_1_0.ttf") format("truetype");
font-display: swap;
}

@font-face {
font-family: "Minlo";
src: url("webfonts/Minlo-Regular.eot");
Expand Down
Binary file removed public/webfonts/38F436_0_0.eot
Binary file not shown.
Binary file removed public/webfonts/38F436_0_0.ttf
Binary file not shown.
Binary file removed public/webfonts/38F436_0_0.woff
Binary file not shown.
Binary file removed public/webfonts/38F436_1_0.eot
Binary file not shown.
Binary file removed public/webfonts/38F436_1_0.ttf
Binary file not shown.
Binary file removed public/webfonts/38F436_1_0.woff
Binary file not shown.
10 changes: 2 additions & 8 deletions src/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,14 @@
}

.Header .navbar .navbar-brand a h1 {
font-family: "DINNextLTPro-Heavy", sans-serif;
padding-top: 13px;
display: inline-block;
margin-bottom: 0;
color: #ffffff;
font-size: 18px;
font-size: 17px;
line-height: 1.4;
margin-top: 0;
font-weight: 500;
}

.Header .navbar .navbar-brand a span {
font-family: "DINNextLTPro-Regular", sans-serif;
margin-left: 2px;
font-weight: 800;
}

.Header .navbar .navbar-brand a img {
Expand Down
4 changes: 1 addition & 3 deletions src/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,7 @@ export default function Header({
<Navbar.Brand>
<Link to="/">
<img src={logo} alt="logo" />
<h1>
NAADAN<span>CHORDS</span>
</h1>
<h1>Naadan Chords</h1>
</Link>
</Navbar.Brand>
<button
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Content.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default class Content extends Component {
};

renderTitle = (title, isUserPosts, isCategory, posts, authorCreateDate) => {
let displayTitle = title ? title : "LATEST POSTS";
let displayTitle = title ? title : "LATEST";
if (isUserPosts) {
displayTitle = posts[0].authorName;

Expand Down
2 changes: 1 addition & 1 deletion src/containers/Posts.js
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ export default class Posts extends Component {
this.props.match.params.album
)} - GUITAR CHORDS AND TABS - PAGE ${this.props.match.params.number}`;
} else {
title = `LATEST POSTS - PAGE ${this.props.match.params.number}`;
title = `LATEST - PAGE ${this.props.match.params.number}`;
}
} else if (this.props.isCategory) {
title = `${this.getCategoryFromLegacy(
Expand Down
4 changes: 2 additions & 2 deletions src/containers/account/Editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
}

.Editor .alert .h4.alert-heading {
font-family: "DINNextLTPro-Heavy", sans-serif;
font-size: 1.25rem;
font-size: 1.15rem;
font-weight: 700;
}

.Editor form textarea.form-control,
Expand Down

0 comments on commit 67f9789

Please sign in to comment.