This commit is contained in:
Janis
2022-12-16 23:20:02 +01:00
parent 163e35a49e
commit 47fc8d8c18
14 changed files with 1419 additions and 134 deletions

View File

@@ -18,10 +18,10 @@ export async function getServerSideProps({ locale }) {
};
}
function Pricing() {
function Pricing({ localeTexts }) {
return (
<div className={styles.pricing}>
<h1 className="pageHeadline">Pricing</h1>
<h1 className="pageHeadline">{localeTexts?.pricing?.headline}</h1>
</div>
);
}