Files
wastpol/pages/index.js
2025-12-03 13:05:11 +01:00

29 lines
759 B
JavaScript

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>
);
}