Skip to content

Commit

Permalink
Merge pull request #53 from amir-ben-shimol/main
Browse files Browse the repository at this point in the history
feat: enhance app details display and add personal portfolio entry
  • Loading branch information
amir-ben-shimol authored Jan 11, 2025
2 parents 8c85317 + 7807140 commit 9d1b177
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [1.22.0](https://github.com/amir-ben-shimol/amirbenshimol/compare/v1.21.0...v1.22.0) (2025-01-11)


### Features

* add long description to app details and include Plans Master app ([403c31f](https://github.com/amir-ben-shimol/amirbenshimol/commit/403c31f0123fa41fde63027a1d20072b263e791c))
* enhance app details display and add personal portfolio entry ([2c9130b](https://github.com/amir-ben-shimol/amirbenshimol/commit/2c9130b7c6ab09af9e682c643724cd062d022aba))

# [1.21.0](https://github.com/amir-ben-shimol/amirbenshimol/compare/v1.20.0...v1.21.0) (2024-09-25)

# [1.20.0](https://github.com/amir-ben-shimol/amirbenshimol/compare/v1.19.0...v1.20.0) (2024-09-23)
Expand Down
7 changes: 5 additions & 2 deletions src/app/apps/[app-id]/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ const App = () => {
<UIImage className="rounded-3xl sm:rounded-[48px]" src={app.image} alt={app.title} layout="fill" objectFit="cover" />
</div>
<h1 className="leading-tighter font-heading mb-4 text-center text-5xl font-bold tracking-tighter md:text-6xl">{app.title}</h1>
<h2 className="mb-8 text-center text-2xl tracking-tight md:text-3xl">{app.description}</h2>
{app.longDescription && <p className="mb-8 text-center text-sm tracking-tight md:text-lg">{app.longDescription}</p>}
{app.longDescription ? (
<p className="mb-8 text-center text-2xl tracking-tight md:text-3xl">{app.longDescription}</p>
) : (
<h2 className="mb-8 text-center text-2xl tracking-tight md:text-3xl">{app.description}</h2>
)}
<div className="mt-4 flex flex-col items-center gap-4 xs:flex-row sm:mt-6">
{app.sourceCodeLink && (
<Link
Expand Down
16 changes: 16 additions & 0 deletions src/lib/data/apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,22 @@ export const appsList: App[] = [
],
},
},
{
id: 'amir-ben-shimol-portfolio',
title: 'This Website',
description: 'Personal portfolio website',
image: '/android-chrome-512x512.png',
metadata: [
'https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white',
'https://img.shields.io/badge/next%20js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white',
'https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=for-the-badge&logo=tailwind-css&logoColor=white',
'https://img.shields.io/badge/AWS-%23FF9900.svg?style=for-the-badge&logo=amazon-aws&logoColor=white',
'https://img.shields.io/badge/terraform-%235835CC.svg?style=for-the-badge&logo=terraform&logoColor=white',
'https://img.shields.io/badge/Prisma-3982CE?style=for-the-badge&logo=Prisma&logoColor=white',
'https://img.shields.io/badge/Docker-2CA5E0?style=for-the-badge&logo=docker&logoColor=white',
],
sourceCodeLink: 'https://github.com/amir-ben-shimol/amirbenshimol',
},
{
id: 'exlint-dashboard',
title: 'Exlint Dashboard',
Expand Down

0 comments on commit 9d1b177

Please sign in to comment.