This commit is contained in:
2022-02-17 14:01:07 +01:00
commit d13bee1395
30 changed files with 11302 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import styles from "../../styles/Home.module.css";
export default function Content() {
return (
<div>
<p className={styles.description}>
Lokalizacja
<br />
<b>Nowy Sącz, Aleje Wolności 6</b>
</p>
<p className={styles.description}>
Telefon kontaktowy
<br />
<b>
<a href="tel:+48504066513">+48 504 066 513</a>
</b>
<br />
<b>
<a href="tel:184420244">18 442 02 44</a>
</b>
</p>
<p className={styles.description}>
Adres email
<br />
<b>
<a href="mailto:biuro@wastpol.pl">biuro@wastpol.pl</a>
</b>
</p>
</div>
);
}

View File

@@ -0,0 +1,9 @@
import styles from "../../styles/Home.module.css";
export default function Footer() {
return (
<div>
<p></p>
</div>
);
}

View File

@@ -0,0 +1,9 @@
import styles from "../../styles/Home.module.css";
export default function Header() {
return (
<div>
<h1 className="text-3xl p-6">Generuj profil przekroju terenu</h1>
</div>
);
}

19
pages/templates/nav.js Normal file
View File

@@ -0,0 +1,19 @@
import Link from "next/link";
export default function Nav() {
return (
<div className="flex">
<Link href="/">
<h2 className="px-2 place-self-center">
<img src="logo.png" className="h-12" />
</h2>
</Link>
<Link href="/onas">
<h3 className="px-3 py-2 place-self-end">O nas</h3>
</Link>
<Link href="/kontakt">
<h3 className="px-3 py-2 place-self-end">Kontakt</h3>
</Link>
</div>
);
}