initial commit

This commit is contained in:
DanielS
2026-06-30 22:51:26 +02:00
commit 3486145b9f
22 changed files with 9108 additions and 0 deletions

22
src/pages/index.astro Normal file
View File

@@ -0,0 +1,22 @@
---
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 | Zukunftssichere IT-Dienstleistungen">
<Navbar />
<main>
<Hero />
<Services />
<TechStack />
<About />
</main>
<Contact />
<Footer />
</Layout>