Initial commit
This commit is contained in:
28
pages/index.js
Normal file
28
pages/index.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user