Skip to content

Commit

Permalink
changed logo
Browse files Browse the repository at this point in the history
  • Loading branch information
hemant10yadav committed Dec 31, 2024
1 parent 95fb724 commit 961539b
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BrightRClub
# bookstore

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.0.0.

Expand Down
10 changes: 5 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"BrightRClub": {
"bookstore": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
Expand All @@ -17,7 +17,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/bright-rclub",
"outputPath": "dist/bookstore",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": ["zone.js"],
Expand Down Expand Up @@ -61,11 +61,11 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "BrightRClub:build:production",
"browserTarget": "bookstore:build:production",
"proxyConfig": "src/proxy.conf.json"
},
"development": {
"browserTarget": "BrightRClub:build:development",
"browserTarget": "bookstore:build:development",
"proxyConfig": "src/proxy.conf.json"
}
},
Expand All @@ -74,7 +74,7 @@
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "BrightRClub:build"
"browserTarget": "bookstore:build"
}
},
"test": {
Expand Down
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,5 +1,5 @@
{
"name": "bright-rclub",
"name": "bookstore",
"version": "0.0.0",
"scripts": {
"ng": "ng",
Expand Down
6 changes: 3 additions & 3 deletions src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});

it(`should have as title 'BrightRClub'`, () => {
it(`should have as title 'bookstore'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('BrightRClub');
expect(app.title).toEqual('bookstore');
});

it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('.content span')?.textContent).toContain('BrightRClub app is running!');
expect(compiled.querySelector('.content span')?.textContent).toContain('bookstore app is running!');
});
});
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ import { Component } from '@angular/core';
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'BrightRClub';
title = 'bookstore';
}
4 changes: 2 additions & 2 deletions src/app/components/my-footer/app-footer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
</div>
</div>
<div class="col">
<img alt="logo" src="assets/icons/BrightR.Club.png" />
<img alt="logo" src="assets/img/logo.jpeg" />
</div>
</div>
</div>
<div
class="footer text-white d-flex justify-content-center align-items-center"
>
<span> © 2024 BrightR.Club </span>
<span> This website is created solely for demonstration purposes and is not intended for commercial use. </span>
</div>
</footer>
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<div class="container-fluid app-padding">
<a class="navbar-brand" href="/">
<img
alt="BrightRClub logo"
alt="bookstore logo"
class="clickable app-logo"
src="assets/img/BrightR.Club.png"
src="assets/img/logo.jpeg"
/></a>
<div class="me-3 navSearch flex-grow-1">
<div class="position-relative search-box">
Expand Down
Binary file removed src/assets/img/BrightR.Club.png
Binary file not shown.
Binary file added src/assets/img/logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>BrightRClub</title>
<title>Bookstore</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="assets/img/BrightR.Club.png">
<link rel="icon" type="image/x-icon" href="assets/img/logo.jpeg">
</head>
<body>
<app-root></app-root>
</body>
</html>
</html>

0 comments on commit 961539b

Please sign in to comment.