Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | 2x 2x 1x 1x 1x | import Image from 'next/image'
import Link from 'next/link'
import MetaData from '../components/MetaData'
export default function Index(props) {
return (
<div role="main" className="container mx-auto px-6 my-5 bg-slate-300 p-12">
<MetaData language={props.locale} data={props.meta}></MetaData>
<div className="flex flex-col justify-center items-center m-auto">
<div className="z-10 bg-white h-auto w-[18.75rem] xl:w-[31.25rem]">
<h1 className="sr-only">service.canada.ca-digital-center</h1>
<div className="h-auto w-64 mx-auto pt-6 xl:w-2/3 xl:mx-0 xl:px-6">
<Image
src="/sig-blk-en.svg"
alt="Government of Canada / Gouvernement du Canada logo"
width={10}
height={1}
layout="responsive"
objectFit="scale-down"
></Image>
</div>
<div className="flex w-max container py-11 mx-auto font-display">
<div className="grid grid-cols-2 gap-2 xl:gap-6">
<Link href="/home">
<a
className="font-display rounded focus:ring-1 focus:ring-black focus:ring-offset-2 py-2 px-10 whitespace-pre bg-[#173451] text-white text-center border border-[#173451] active:bg-[#21303F] hover:bg-#245C81 grid place-items-center"
// onClick={props.onClick}
role="button"
draggable="false"
lang="en"
id="english-button"
>
English
</a>
</Link>
<Link href="/fr/home">
<a
className="font-display rounded focus:ring-1 focus:ring-black focus:ring-offset-2 py-2 px-10 whitespace-pre bg-[#173451] text-white text-center border border-[#173451] active:bg-[#21303F] hover:bg-#245C81 grid place-items-center"
// onClick={props.onClick}
role="button"
draggable="false"
lang="fr"
id="french-button"
>
Français
</a>
</Link>
</div>
</div>
</div>
<div className="relative py-8 bg-gray-light text-p h-auto min-w-[18.75rem] w-[18.75rem] flex justify-between p-6 xl:w-[31.25rem] xl:items-center">
<div className="w-28 text-base xl:text-p xl:w-max font-body text-bright-blue-dark">
<Link href="https://www.canada.ca/en/transparency/terms.html">
<a
className="inline-block w-28 xl:w-max mr-0 hover:underline splash-a text-lg"
lang="en"
data-cy="terms"
>
Terms & conditions
</a>
</Link>
<span> • </span>
<Link href="https://www.canada.ca/fr/transparence/avis.html">
<a
className="inline-block hover:underline font-body text-lg"
lang="fr"
data-cy="avis"
>
Avis
</a>
</Link>
</div>
<img className="h-auto w-24 xl:w-28" src="/wmms-blk.svg" alt="" />
</div>
</div>
</div>
)
}
Index.getLayout = function PageLayout(page) {
return <>{page}</>
}
export async function getStaticProps({ locale }) {
// const content = await fetchContent()
/* Place-holder Meta Data Props */
const meta = {
data_en: {
title: 'Next Template - Canada.ca',
desc: 'English',
author: 'Service Canada',
keywords: '',
},
data_fr: {
title: 'Next Template - Canada.ca',
desc: 'Français',
author: 'Service Canada',
keywords: '',
},
}
return {
props: { locale, meta },
}
}
|