Skip to content

Commit

Permalink
move assets
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Sep 2, 2021
1 parent 5926fd4 commit bcc41e8
Show file tree
Hide file tree
Showing 14 changed files with 12 additions and 16 deletions.
2 changes: 1 addition & 1 deletion FAVICON_GENERATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Follow the instructions below to be able to generate favicon.

## Instructions

1. Upload the **[brand-logo.png](src/assets/production/brand-logo.png)** file to **[RealFaviconGenerator v0.16](https://realfavicongenerator.net/)**
1. Upload the **[brand-logo.png](src/assets/logo/brand-logo.png)** file to **[RealFaviconGenerator v0.16](https://realfavicongenerator.net/)**

2. Download the favicon package generated

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Company Profile UI Template for generic usage in Angular (generated from [Web UI

<p align="center">
<a href="https://opentemplatehub.com">
<img src="https://github.com/open-template-hub/company-profile-ui-template/blob/develop/src/assets/common/demonstration/demonstration-main.png?raw=true" alt="Screenshot" width="800px">
<img src="https://github.com/open-template-hub/company-profile-ui-template/blob/develop/src/assets/demonstration/demonstration-main.png?raw=true" alt="Screenshot" width="800px">
</a>
</p>

Expand Down
12 changes: 4 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets/common",
"src/assets/production"
"src/assets"
],
"styles": [
"src/styles/styles.scss"
Expand Down Expand Up @@ -64,8 +63,7 @@
"staging": {
"assets": [
"src/favicon.ico",
"src/assets/common",
"src/assets/production"
"src/assets"
],
"fileReplacements": [
{
Expand All @@ -82,8 +80,7 @@
"vendorChunk": true,
"assets": [
"src/favicon.ico",
"src/assets/common",
"src/assets/production"
"src/assets"
]
},
"local-to-staging-api": {
Expand All @@ -94,8 +91,7 @@
"vendorChunk": true,
"assets": [
"src/favicon.ico",
"src/assets/common",
"src/assets/production"
"src/assets"
],
"fileReplacements": [
{
Expand Down
6 changes: 3 additions & 3 deletions src/app/data/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,19 +204,19 @@ export const SERVICES: DropdownColumnOption[ ] = [
sectionDescription: 'Services that we provide',
menus: [
{
brand: { brandLogo: './assets/production/brand-logo.png' },
brand: { brandLogo: './assets/logo/brand-logo.png' },
header: 'Software Consultancy',
description: 'Open Template Hub is an organization that develops open source micro servers as templates including authentication server, payment server and more..',
link: URLS.maintenance
},
{
brand: { brandLogo: './assets/production/brand-logo.png' },
brand: { brandLogo: './assets/logo/brand-logo.png' },
header: 'Cloud Integration',
description: 'Open Template Hub is an organization that develops open source micro servers as templates including authentication server, payment server and more..',
link: URLS.maintenance
},
{
brand: { brandLogo: './assets/production/brand-logo.png' },
brand: { brandLogo: './assets/logo/brand-logo.png' },
header: 'Quality Insurance',
description: 'Open Template Hub is an organization that develops open source micro servers as templates including authentication server, payment server and more..',
link: URLS.maintenance
Expand Down
2 changes: 1 addition & 1 deletion src/app/page/raw-landing-layout/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h6>Minimizes your effort while building a new software business with our open s
</div>

<div class="hero-content-right">
<img class="demonstration" [src]="'./assets/common/demonstration/demonstration-main.png'" alt="demonstration"/>
<img class="demonstration" [src]="'./assets/demonstration/demonstration-main.png'" alt="demonstration"/>
</div>
</div>
<div class="counters">
Expand Down
2 changes: 1 addition & 1 deletion src/app/service/theme/theme.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class ThemeService {

this.sideNavClosedSubject = new BehaviorSubject<string>( sideNavClosedStorageItem );
this.sideNavClosed = this.sideNavClosedSubject.asObservable();
this.brand.brandLogo = './assets/production/brand-logo.png';
this.brand.brandLogo = './assets/logo/brand-logo.png';

if ( version ) {
this.appVersion = version;
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<app-root>
<div class="index-splash-page">
<div class="index-splash-animation">
<img alt="logo" src="./assets/production/brand-logo.png"/>
<img alt="logo" src="src/assets/logo/brand-logo.png"/>
<h2>OpenTemplateHub</h2>
<div class="index-splash-bar">
</div>
Expand Down

0 comments on commit bcc41e8

Please sign in to comment.