Skip to content

Commit

Permalink
feat: disable android download link *sad violin starts playing*
Browse files Browse the repository at this point in the history
  • Loading branch information
berenteb authored and Sámuel Fekete committed Mar 18, 2024
1 parent 7d61b40 commit 3df1f3a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
3 changes: 0 additions & 3 deletions src/components/tiles/mobil-app-tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ export function MobilAppTile({ data }: Props) {
<a href={data.iosUrl} target='_blank'>
<img className='h-[60px] min-w-[180]' src='/img/appstore.svg' alt='App Store' />
</a>
<a href={data.androidUrl} className='h-fit' target='_blank'>
<img className='h-[57px] min-w-[190]' src='/img/androidapk.svg' alt='Play Store' />
</a>
</div>
<Link
href='/mobile'
Expand Down
20 changes: 10 additions & 10 deletions src/components/tiles/mobile/android-tile.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
import Image from 'next/image';
import Link from 'next/link';

import { Tile } from '@/components/tiles/tile';

interface AndroidTileProps {
androidUrl: string;
}

export function AndroidTile({ androidUrl }: AndroidTileProps) {
export function AndroidTile({}: AndroidTileProps) {
return (
<Tile>
<Tile.Body className='space-y-8 text-center'>
<h2>Android</h2>
<Link className='mx-auto w-fit block' href={androidUrl}>
<Image src='/img/androidapk.svg' alt='Letölthető Android APK' width={302} height={80} />
</Link>
<p>
Az APK fájlt letöltve és megnyitva telepítheted az alkalmazást az Androidos eszközödre. A telepítés
előtt/közben az "Ismeretlen forrásból származó alkalmazások engedélyezése" opciót be kell kapcsolni a
beállításokban.
</p>
<Image
className='opacity-50 mx-auto'
src='/img/google-play.png'
alt='Letölthető Android APK'
width={250}
height={40}
/>
<p>Sajnáljuk, de az Android alkalmazás még nem érhető el a Google Play Áruházban.</p>
<p>További információkért látogass el a Kir-Dev standjához!</p>
</Tile.Body>
</Tile>
);
Expand Down

0 comments on commit 3df1f3a

Please sign in to comment.