3a7194b33d
Some optimisation still needs to be done
55 lines
2.5 KiB
TypeScript
55 lines
2.5 KiB
TypeScript
import Head from 'next/head'
|
|
import Link from 'next/link'
|
|
import { useTranslations } from 'next-intl'
|
|
import { GetStaticPropsContext, InferGetStaticPropsType } from 'next'
|
|
import Image from 'next/image'
|
|
import LinkCard from '../components/linkcard'
|
|
|
|
export function getStaticProps({locale}: GetStaticPropsContext) {
|
|
return {
|
|
props: {
|
|
// You can get the messages from anywhere you like, but the recommended
|
|
// pattern is to put them in JSON files separated by language and read
|
|
// the desired one based on the `locale` received from Next.js.
|
|
messages: require(`../locales/${locale}.json`),
|
|
}
|
|
};
|
|
}
|
|
|
|
export default function Home() {
|
|
const t = useTranslations('common')
|
|
return (
|
|
<div className="">
|
|
<Head>
|
|
<title>Vänner Bäst | Friends Best</title>
|
|
<meta name="description" content="Generated by create next app" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta property="og:title" content="Vänner Bäst | Friends Best" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:image" content="https://www.vannerba.st/yr.jpg" />
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:site" content="@Ludoviko_" />
|
|
<meta name="twitter:creator" content="@Ludoviko_" />
|
|
<meta property="og:description" content="A Young Royals fan website with links to different discussion spaces."/>
|
|
</Head>
|
|
|
|
<main className="container mx-auto min-h-screen min-w-full bg-gray-300 dark:bg-gray-700">
|
|
<Image src="/yr.jpg" alt="Young Royals" width={512} height={288} className="py-6" />
|
|
<h1 className="dark:text-gray-300 font-bold text-center text-6xl pt-4">
|
|
{t('welcome')}
|
|
</h1>
|
|
<p className="dark:text-gray-300 text-center text-2xl">
|
|
{t('desc')}
|
|
</p>
|
|
<div className="grid grid-flow-col grid-cols-2 grid-rows-2 gap-6 pt-4 px-8">
|
|
<LinkCard link="https://vannerba.st/watch" title={`${t('watch.title')}`} sub={t('watch.desc')}/>
|
|
<LinkCard link="https://vannerba.st/discord" title={`Discord`} sub={t('discord')}/>
|
|
<LinkCard link="https://vannerba.st/reddit" title={`Reddit`} sub={t('reddit')}/>
|
|
<LinkCard link="https://vannerba.st/learn" title={t('learn.title')} sub={t('learn.desc')}/>
|
|
</div>
|
|
</main>
|
|
<footer className="bg-gray-300 dark:bg-gray-700 dark:text-gray-300 text-center dark:hover:text-indigo-400"><Link href="https://ludoviko.ch">Created by: Ludoviko</Link></footer>
|
|
</div>
|
|
)
|
|
}
|