Skip to content

Commit

Permalink
add project (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnguyennz authored Aug 27, 2024
1 parent 0b2db02 commit c5d26c7
Show file tree
Hide file tree
Showing 8 changed files with 242 additions and 41 deletions.
229 changes: 188 additions & 41 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions src/assets/icons/angular-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/assets/icons/angular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/components/pages/home/ProjectCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ const tags: CollectionEntry<"tags">[] = await getEntries(project.data.tags);
</>
) : slug === "react" ? (
<ReactIcon />
) : slug === "angular" ? (
<>
<Icon name="angular" class={"h-6 w-auto dark:hidden"} />
<Icon
name="angular-dark"
class={"hidden h-6 w-auto dark:block"}
/>
</>
) : (
<Icon
name={slug}
Expand Down
Binary file added src/content/projects/hoopspredictor-cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions src/content/projects/hoopspredictor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Hoops Predictor
description: Angular re-design
cover: "./hoopspredictor-cover.png"
image: "./hoopspredictor.png"
url: https://www.thehoopspredictor.com/
tags:
- angular
order: 1
---

Re-designed site and dashboard for an existing Angular app.

**Main Tools**

- [Angular](https://angular.dev/) - web framework
- [PrimeNG](https://primeng.org/) - component library
Binary file added src/content/projects/hoopspredictor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/content/tags/angular.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
name: Angular
url: https://angular.dev/
---

0 comments on commit c5d26c7

Please sign in to comment.