Links no longer rely on the link shortener

Corrected Website name to correct Swedish form.
Corrected card layout
This commit is contained in:
Louis Hollingworth 2022-04-24 14:07:20 +01:00
parent 06cc898770
commit ef9aadd68a
No known key found for this signature in database
GPG key ID: 1E66DEA3F5D623D1
7 changed files with 12 additions and 13 deletions

View file

@ -1 +1 @@
4 6

View file

@ -2,8 +2,7 @@
m=$(cat ./build_number) m=$(cat ./build_number)
echo $m echo $m
wait 10 wait 10
docker build -t ghcr.io/lucxjo/friends-best:build-$m . docker build -t ghcr.io/lucxjo/friends-best:build-$m -t ghcr.io/lucxjo/friends-best:latest .
docker build -t ghcr.io/lucxjo/friends-best:latest .
docker push ghcr.io/lucxjo/friends-best:build-$m docker push ghcr.io/lucxjo/friends-best:build-$m
docker push ghcr.io/lucxjo/friends-best:latest docker push ghcr.io/lucxjo/friends-best:latest

View file

@ -1,6 +1,6 @@
{ {
"common": { "common": {
"welcome": "Welcome to Vänner Bäst.", "welcome": "Welcome to Vänner Bästa.",
"desc": "A Young Royals fan website with links to different discussion spaces.", "desc": "A Young Royals fan website with links to different discussion spaces.",
"watch": { "watch": {
"title": "Watch", "title": "Watch",

View file

@ -1,6 +1,6 @@
{ {
"common": { "common": {
"welcome": "Bonvenon al Vänner Bäst.", "welcome": "Bonvenon al Vänner Bästa.",
"desc": "Young Royals Fan-retejo kun ligoj al diversaj diskutaj spacoj.", "desc": "Young Royals Fan-retejo kun ligoj al diversaj diskutaj spacoj.",
"watch": { "watch": {
"title": "Viglu", "title": "Viglu",

View file

@ -1,6 +1,6 @@
{ {
"common": { "common": {
"welcome": "Bienvenid@ a Vänner Bäst.", "welcome": "Bienvenide a Vänner Bästa.",
"desc": "Un sitio web de fans de Young Royals con enlaces a diferentes espacios de discusión.", "desc": "Un sitio web de fans de Young Royals con enlaces a diferentes espacios de discusión.",
"watch": { "watch": {
"title": "Ver", "title": "Ver",

View file

@ -14,7 +14,7 @@ function _App({ Component, pageProps }: AppProps) {
<meta name="twitter:card" content="summary" /> <meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@Ludoviko_" /> <meta name="twitter:site" content="@Ludoviko_" />
<meta name="twitter:creator" content="@Ludoviko_" /> <meta name="twitter:creator" content="@Ludoviko_" />
<meta property="og:title" content="Vänner Bäst | Friends Best" /> <meta property="og:title" content="Vänner Bästa | Friends Best" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:image" content="https://www.vannerba.st/yr.jpg" /> <meta property="og:image" content="https://www.vannerba.st/yr.jpg" />
<meta name="theme-color" <meta name="theme-color"

View file

@ -31,12 +31,12 @@ export default function Home() {
<p className="dark:text-gray-300 text-center md:text-2xl text-lg"> <p className="dark:text-gray-300 text-center md:text-2xl text-lg">
{t('desc')} {t('desc')}
</p> </p>
<div className="grid grid-flow-col grid-cols-2 grid-rows-2 gap-6 pt-4 px-8"> <div className="grid grid-flow-col grid-cols-2 grid-rows-3 gap-6 pt-4 px-8">
<LinkCard link="https://vannerba.st/watch" title={`${t('watch.title')}`} sub={t('watch.desc')}/> <LinkCard link="https://www.netflix.com/title/81210762" title={`${t('watch.title')}`} sub={t('watch.desc')}/>
<LinkCard link="https://vannerba.st/discord" title={`Discord`} sub={t('discord')}/> <LinkCard link="https://discord.gg/hyKVDeRJ8Y" title={`Discord`} sub={t('discord')}/>
<LinkCard link="https://vannerba.st/reddit" title={`Reddit`} sub={t('reddit')}/> <LinkCard link="https://www.reddit.com/r/YoungRoyals/" title={`Reddit`} sub={t('reddit')}/>
<LinkCard link="https://vannerba.st/learn" title={t('learn.title')} sub={t('learn.desc')} /> <LinkCard link="https://www.talkable.com/x/IchxFl" title={t('learn.title')} sub={t('learn.desc')} />
<LinkCard link="https://vannerba.st/matrix" title={`Matrix`} sub={t('matrix')} /> <LinkCard link="https://matrix.to/#/#young-royals:matrix.org" title={`Matrix`} sub={t('matrix')} />
</div> </div>
</main> </main>
</div> </div>