Initial commit

This commit is contained in:
2025-12-03 13:05:11 +01:00
commit 35329c2626
29 changed files with 6627 additions and 0 deletions

28
pages/index.js Normal file
View File

@@ -0,0 +1,28 @@
import Head from "next/head";
import Image from "next/image";
import styles from "../styles/Home.module.css";
import Main from "../components/templates/main";
import Second from "../components/templates/second";
import Location from "../components/templates/location";
import Contact from "../components/templates/contact";
export default function Home() {
return (
<div className="font-default scroll-smooth">
<Head>
<title>Wastpol</title>
<meta
name="description"
content="Biuro projektowe Wastpol w Nowym Sączu"
/>
<link rel="icon" href="/favicon.ico" />
</Head>
<Main />
<Second />
<Location />
{/* <Contact /> */}
<div className="bg-slate-100 p-16 text-slate-400">© Wastpol 2022</div>
</div>
);
}