35 lines
1.4 KiB
JavaScript
35 lines
1.4 KiB
JavaScript
import Head from "next/head";
|
|
import Hero from "../components/templates/hero";
|
|
import Navigation from "../components/templates/navigation";
|
|
import Services from "../components/templates/services";
|
|
import About from "../components/templates/about";
|
|
import Contact from "../components/templates/contact";
|
|
import Footer from "../components/templates/footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="font-sans scroll-smooth antialiased">
|
|
<Head>
|
|
<title>Wastpol - Projektowanie i Realizacja | Instalacje Elektryczne Nowy Sącz</title>
|
|
<meta
|
|
name="description"
|
|
content="Wastpol - kompleksowe usługi elektryczne w Nowym Sączu. Projektowanie, realizacja, nadzory i pomiary instalacji elektrycznych. Ponad 20 lat doświadczenia, 4000+ zrealizowanych projektów."
|
|
/>
|
|
<meta name="keywords" content="projektowanie, realizacja instalacji elektrycznych, Nowy Sącz, Wastpol, sieci elektryczne, nadzory, pomiary, wykonawstwo elektryczne" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
|
|
</Head>
|
|
|
|
<Navigation />
|
|
<Hero />
|
|
<Services />
|
|
<About />
|
|
<Contact />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|