Skip to content

Commit 20376be

Browse files
committed
feat(portfolio): add dribble and behance links to aoc page
1 parent 5437e45 commit 20376be

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

apps/valor-software-site/src/assets/portfolio/clients/ashes-of-creation.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"name": "Ashes of Creation",
33
"link": "https://ashesofcreation.com/",
4+
"dribbleLink": "https://dribbble.com/shots/19031502-Ashes-of-Creation-web-design",
5+
"behanceLink": "https://www.behance.net/gallery/151868601/Ashes-of-Creation-website",
46
"feedback": "Steven Sharif",
57
"sortTechnologies": ["aws", "nest_js"],
68
"previewImg": "assets/img/bg-img/ashes_page/header_bg_resp.png",

libs/route-pages/ashes-page/src/lib/ashes-page.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
{{project.description}}
1818
</p>
1919
<div class="flex flex-col xl:flex-row md:items-center xl:items-start mb-5 xl:mb-0">
20-
<button class="btn-pink w-full lg:w-auto flex md:items-center xl:mr-6 mb-5 xl:mb-0 justify-center">
20+
<button class="btn-pink w-full xl:w-auto flex md:items-center xl:mr-6 mb-5 xl:mb-0 justify-center">
2121
<a class="flex justify-center items-center" [href]="project.link" target="_blank">
2222
<span>Visit the site</span>
2323
<img src="assets/img/icons/arrow.svg" class="ml-2 -rotate-45 mb-2" alt=""></a>
2424
</button>
2525
<button *ngIf="project.dribbleLink"
26-
class="btn-dark-pink w-full lg:w-auto flex md:items-center xl:mr-6 mb-5 xl:mb-0 justify-center">
26+
class="btn-dark-pink w-full xl:w-auto flex md:items-center xl:mr-6 mb-5 xl:mb-0 justify-center">
2727
<a class="flex justify-center items-center" [href]="project.dribbleLink" target="_blank">
2828
<span>Dribble</span>
2929
<img src="assets/img/icons/arrow.svg" class="ml-2 -rotate-45 mb-2" alt="">
3030
</a>
3131
</button>
3232
<button *ngIf="project.behanceLink"
33-
class="btn-blue w-full lg:w-auto flex md:items-center xl:mr-6 mb-5 xl:mb-0 justify-center">
33+
class="btn-blue w-full xl:w-auto flex md:items-center xl:mr-6 mb-5 xl:mb-0 justify-center">
3434
<a class="flex justify-center items-center" [href]="project.behanceLink" target="_blank">
3535
<span>Behance</span>
3636
<img src="assets/img/icons/arrow.svg" class="ml-2 -rotate-45 mb-2" alt="">

0 commit comments

Comments
 (0)