This commit is contained in:
ASOwnerYT
2024-11-28 10:41:29 +13:00
parent c8f05290e8
commit c36d7bf52a
7 changed files with 477 additions and 17 deletions
+29 -1
View File
@@ -1,11 +1,39 @@
import Image from "next/image";
import styles from "./page.module.css";
import bgimage from "./assets/header-bg.jpg";
export default function Home() {
return (
<div className={styles.page}>
<main className={styles.main}>
<h1>Hello world</h1>
<section>
<div className={styles.header}>
<Image
src={bgimage}
alt="Header Background"
placeholder="blur"
quality={100}
fill
sizes="100vw"
style={{
objectFit: "cover",
}}
/>
<div className={styles.textbox}>
<div className="container">
<div className={styles.textboxInner}>
<h1>Delivering Exceptional Service.</h1>
<p>
Our mission is to provide top-notch repair services and an
outstanding customer experience. Comprehensive guides, a
supportive community, and prompt assistance make working
with us a breeze.
</p>
</div>
</div>
</div>
</div>
</section>
</main>
</div>
);