Initial commit with essential code files only

This commit is contained in:
2025-07-18 16:13:09 +02:00
commit 8e9b0ef8a8
33 changed files with 1703 additions and 0 deletions

34
pages/index.js Normal file
View File

@@ -0,0 +1,34 @@
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>
);
}