Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add project #92

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/
---
Loading