initial commit
This commit is contained in:
22
src/pages/index.astro
Normal file
22
src/pages/index.astro
Normal 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>
|
||||
Reference in New Issue
Block a user