initial
This commit is contained in:
33
pages/templates/content.js
Normal file
33
pages/templates/content.js
Normal 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>
|
||||
);
|
||||
}
|
||||
9
pages/templates/footer.js
Normal file
9
pages/templates/footer.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import styles from "../../styles/Home.module.css";
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<div>
|
||||
<p></p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
9
pages/templates/header.js
Normal file
9
pages/templates/header.js
Normal 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
19
pages/templates/nav.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user