Skip to content

Commit

Permalink
changedtitlesqueakimage
Browse files Browse the repository at this point in the history
  • Loading branch information
Cwarrick10 committed Sep 6, 2022
1 parent 0bcbb29 commit 071dbd3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
23 changes: 13 additions & 10 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<!-- sidebar starts -->
<div class="sidebar">
<!-- <i class="fab fa-twitter"></i>-->
<img src="https://i.ibb.co/7vFVtv8/rat.png" width = "30" height = "30"/>
<img src="https://cdn.discordapp.com/attachments/1009121959516315688/1016814063101165668/0C187506-04B4-4FBE-96F1-F4729304D41D.png" width = "220" height = "50"/>
<div class="sidebarOption active">
<span class="material-icons"> home </span>
<button class="sidebarButton" routerLink="/home">Home</button>
Expand Down Expand Up @@ -64,24 +64,27 @@ <h2>HOME - HELLO {{ this.currentSqueaker.username.toUpperCase()}}</h2>
<div class="widgets">
<div class="widgets__input">
<span class="material-icons widgets__searchIcon"> search </span>
<input type="text" placeholder="Search" />
<input type="text" placeholder="Search Squeaker" />
</div>

<div class="widgets__widgetContainer">
<h2>What's happening?</h2>
<h2>What's Happening Now</h2>
<blockquote class="squeaker-squeak">
<p lang="en" dir="ltr">
Sunsets don&#39;t get much better than this one over
<a href="https://twitter.com/GrandTetonNPS?ref_src=twsrc%5Etfw">@GrandTetonNPS</a>.
<a href="https://twitter.com/hashtag/nature?src=hash&amp;ref_src=twsrc%5Etfw"
>#nature</a
>
<a href="https://twitter.com/hashtag/sunset?src=hash&amp;ref_src=twsrc%5Etfw"
>#sunset</a>
<a href="https://twitter.com/hashtag/squeak?src=hashtag_click&f=live"
>#squeak</a>
</p>
</blockquote>

</div>
<div class="widgets__widgetContainer">
<h2>Who To Follow</h2>

<button class="sidebarButton" routerLink="/profile">Follow</button>

</div>


</div>
<!-- widgets ends -->
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/app/profile/profile.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<!-- sidebar starts -->
<div class="sidebar">
<!-- <i class="fab fa-twitter"></i>-->
<img src="https://i.ibb.co/7vFVtv8/rat.png" width = "30" height = "30"/>
<img src="https://cdn.discordapp.com/attachments/1009121959516315688/1016814063101165668/0C187506-04B4-4FBE-96F1-F4729304D41D.png" width = "30" height = "30"/>
<div class="sidebarOption active">
<span class="material-icons"> home </span>
<button class="sidebarButton" routerLink="/home">Home</button>
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/squeak.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class SqueakService {
private headers: HttpHeaders;

constructor(private http: HttpClient) {
// this.squeakUrl = 'http://localhost:8080/squeak';
this.squeakUrl = 'http://localhost:8080/squeak';
this.squeakUrl = 'https://tcg-squaker-back.herokuapp.com/squeak';
this.headers = new HttpHeaders({'Content-Type' : 'application/json'});
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/squeaker.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class SqueakerService {
private headers: HttpHeaders;

constructor(private http: HttpClient) {
// this.squeakerUrl = 'http://localhost:8080/squeaker';
this.squeakerUrl = 'http://localhost:8080/squeaker';
this.squeakerUrl = 'https://tcg-squaker-back.herokuapp.com/squeaker';
this.headers = new HttpHeaders({'Content-Type' : 'application/json'});
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/squeak/squeak.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h3>
</div>
</div>
<img
src="https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-6/275550284_2392137017615959_7898902073337599454_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=09cbfe&_nc_ohc=1oi_mqHsbVUAX-ceWSP&_nc_ht=scontent-lga3-1.xx&oh=00_AT_GpRbzdk5DK_RAB3aKYShOq1qvCxPSjaok_nygBGy_7Q&oe=631AF6E5"
src="https://cdn.discordapp.com/attachments/1009121959516315688/1016795716905078875/IMG_3518.png"
alt=""
/>
<div class="post__footer">
Expand Down

0 comments on commit 071dbd3

Please sign in to comment.