23 lines
615 B
Plaintext
23 lines
615 B
Plaintext
---
|
|
import Layout from '../layouts/Layout.astro';
|
|
import Navbar from '../components/Navbar.astro';
|
|
import Hero from '../components/Hero.astro';
|
|
import Services from '../components/Services.astro';
|
|
import TechStack from '../components/TechStack.astro';
|
|
import About from '../components/About.astro';
|
|
import Contact from '../components/Contact.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
---
|
|
|
|
<Layout title="N&D i-t SOLUTIONS | Professionelles Webdesign & Websites für Kleinbetriebe">
|
|
<Navbar />
|
|
<main>
|
|
<Hero />
|
|
<Services />
|
|
<TechStack />
|
|
<About />
|
|
</main>
|
|
<Contact />
|
|
<Footer />
|
|
</Layout>
|