import { Component } from "react"; import "./Homepage.css"; import house1 from "../images/house1.jpg"; import house2 from "../images/house2.jpg"; import house3 from "../images/house3.jpg"; import house4 from "../images/house4.jpg"; import Carousel from "react-bootstrap/Carousel"; import Button from "react-bootstrap/Button"; import { withTranslation } from "react-i18next"; class Homepage extends Component { constructor(props) { super(props); this.state = { nextIcon: , prevIcon: , }; } render() { const { t } = this.props; const { nextIcon, prevIcon } = this.state; return (

{t("Slogan_1")}

{t("Slogan_2")}

First House

100 Charlie Rogers, Kanata, ON K2V 1A7

{t("Rooms")}

Second House

1490 Youville Drive, Orléans, ON K1C 2X8

{t("Rooms")}

Third House

8720 Russell Road, Navan, ON K4B 1J1

{t("Rooms")}

Fourth House

2785 8th Line Road, Metcalfe, ON K0A 2P0

{t("Rooms")}

{t("Desc")}

{t("Home1")}

{t("Home2")}

{t("Home3")}

{t("Home4")}

{t("Home5")}

{t("Home6")}

); } } export default withTranslation()(Homepage);