i think i fixed a bug...

This commit is contained in:
Chop
2022-02-23 19:20:49 +01:00
parent e4478d7841
commit 95dfe2d202
14 changed files with 338 additions and 149 deletions

View File

@@ -1,9 +1,9 @@
import Head from "next/head";
import styles from "../styles/Home.module.css";
import Header from "./templates/header";
import Nav from "./templates/nav";
import Content from "./templates/content";
import Footer from "./templates/footer";
import Header from "../templates/header";
import Nav from "../templates/nav";
import Content from "../templates/content";
import Footer from "../templates/footer";
export default function Onas() {
return (
@@ -15,6 +15,7 @@ export default function Onas() {
</Head>
<Nav />
<Footer />
<main className={styles.main}>
<p className="font-bold">
Głównym profilem działalności firmy jest projektowanie instalacji
@@ -29,7 +30,7 @@ export default function Onas() {
terminach realizacji.
</p>
</main>
<Footer />
</div>
);
}