mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-29 12:52:12 +01:00
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
import Head from "next/head";
|
|
import Nav from "../components/Nav";
|
|
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import {
|
|
faBeer,
|
|
faBreadSlice,
|
|
faSeedling,
|
|
faSpa,
|
|
faUtensils,
|
|
} from "@fortawesome/free-solid-svg-icons";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { useContext } from "react";
|
|
import "react-slideshow-image/dist/styles.css";
|
|
//import { LocaleTextsContext } from "../App";
|
|
import DiashowHomePage from "../components/DiashowHomePage";
|
|
import Map from "../components/Map";
|
|
import styles from "../styles/Home.module.scss";
|
|
import { db } from "../firebase-config";
|
|
import { collection, doc, getDoc, getDocs } from "firebase/firestore";
|
|
|
|
export async function getInitialProps({ router }) {
|
|
let pageProps = {};
|
|
const { locale } = router;
|
|
|
|
return { pageProps, locale };
|
|
}
|
|
|
|
export async function getServerSideProps({ locale }) {
|
|
const data = await getDoc(doc(db, "localeTexts", locale));
|
|
|
|
return {
|
|
props: { localeTexts: data.data() ?? {} },
|
|
};
|
|
}
|
|
|
|
export default function Home({ localeTexts }) {
|
|
return (
|
|
<div className={styles.home}>
|
|
<DiashowHomePage titleLanguage={"eng"} height={"600px"} />
|
|
|
|
<div className={styles.homeSurroundings}>
|
|
<ul>
|
|
<Link href={"/surroundings"}>
|
|
<FontAwesomeIcon icon={faBreadSlice} />
|
|
{localeTexts?.home?.surroundings?.backeries}
|
|
</Link>
|
|
|
|
<Link href={"/surroundings"}>
|
|
<FontAwesomeIcon icon={faUtensils} />
|
|
{localeTexts?.home?.surroundings?.amenities}
|
|
</Link>
|
|
<Link href={"/surroundings"}>
|
|
<FontAwesomeIcon icon={faBeer} />
|
|
{localeTexts?.home?.surroundings?.brewery}
|
|
</Link>
|
|
|
|
<Link href={"/surroundings"}>
|
|
<FontAwesomeIcon icon={faSeedling} />
|
|
{localeTexts?.home?.surroundings?.kraeuterpark}
|
|
</Link>
|
|
<Link href={"/surroundings"}>
|
|
<FontAwesomeIcon icon={faSpa} />
|
|
{localeTexts?.home?.surroundings?.spaPark}
|
|
</Link>
|
|
</ul>
|
|
</div>
|
|
|
|
<div className={styles.homeGrid}>
|
|
<div className={styles.homeIntroduction}>
|
|
<h2>{localeTexts?.home?.introduction?.headline ?? ""}</h2>
|
|
<p
|
|
dangerouslySetInnerHTML={{
|
|
__html: localeTexts?.home?.introduction?.text ?? "",
|
|
}}
|
|
></p>
|
|
</div>
|
|
<div className={styles.homeMapContainer}>
|
|
<Map showAddressText />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|