Skip to content

Commit

Permalink
updated acheivements
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedegeofroy committed Oct 20, 2024
1 parent 54543eb commit 5b8a3ca
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
8 changes: 4 additions & 4 deletions app/components/acheivement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export const AcheivementComponent = ({ acheivement }: AcheivementProps) => {
</div>
<div className='ml-auto flex items-center text-muted-foreground gap-5'>
<div className='items-center flex justify-end md:justify-between gap-5 md:w-[200px]'>
<p className='hidden md:flex text-left'>
{acheivement.project.name}
</p>
<Icons.arrow />
<p className='hidden md:flex text-left'>{acheivement.project.name}</p>
<a href={acheivement.project.href} target='_blank' rel='noopener noreferrer'>
<Icons.arrow />
</a>
</div>
</div>
</div>
Expand Down
14 changes: 7 additions & 7 deletions app/modules/acheivements.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const acheivements: Acheivement[] = [
category: 'Хакатон Помоги Даркстору',
project: {
name: 'Инвентаризация 2.0',
href: '',
href: 'https://vvteam.tilda.ws/hack',
},
},
{
Expand All @@ -20,7 +20,7 @@ const acheivements: Acheivement[] = [
subcategory: 'Грант',
project: {
name: 'SightQuest',
href: '',
href: 'https://sightquest.ru/',
},
},
{
Expand All @@ -30,7 +30,7 @@ const acheivements: Acheivement[] = [
category: 'NoLabel Development Week',
project: {
name: 'DishDash',
href: '',
href: 'https://dishdash.ru/',
},
},
{
Expand All @@ -41,7 +41,7 @@ const acheivements: Acheivement[] = [
subcategory: 'Лучшая разработка продукта',
project: {
name: 'DishDash',
href: '',
href: 'https://dishdash.ru/',
},
},
{
Expand All @@ -51,7 +51,7 @@ const acheivements: Acheivement[] = [
category: 'SmartSocial',
project: {
name: 'KolomnaGo',
href: '',
href: 'https://smartsocialconf.ru/hackathon',
},
},
{
Expand All @@ -61,7 +61,7 @@ const acheivements: Acheivement[] = [
category: 'Creative Space',
project: {
name: 'DishDash',
href: '',
href: 'https://dishdash.ru/',
},
},
{
Expand All @@ -72,7 +72,7 @@ const acheivements: Acheivement[] = [
subcategory: 'Самая прокаченная реализация',
project: {
name: 'SightQuest',
href: '',
href: 'https://sightquest.ru/',
},
},
];
Expand Down
4 changes: 2 additions & 2 deletions app/types/acheivement.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export interface Acheivement {
project: {
name: string;
href: string;
}
}
};
}
6 changes: 4 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
services:
frontend:
ports:
- ${NGINX_PORT-3000}:80
- 3000:80
build:
context: .
dockerfile: Dockerfile
dockerfile: Dockerfile
env_file:
- .env

0 comments on commit 5b8a3ca

Please sign in to comment.