23 lines
579 B
Plaintext
23 lines
579 B
Plaintext
---
|
|
import AboutSection from "../components/landing/AboutSection.astro";
|
|
import ContactSection from "../components/landing/ContactSection.astro";
|
|
import HeroSection from "../components/landing/HeroSection.astro";
|
|
import ServicesSection from "../components/landing/ServicesSection.astro";
|
|
import ValuesSection from "../components/landing/ValuesSection.astro";
|
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
---
|
|
|
|
<BaseLayout title="Home">
|
|
<HeroSection />
|
|
|
|
<ServicesSection />
|
|
|
|
<AboutSection />
|
|
|
|
<ValuesSection />
|
|
|
|
<ContactSection />
|
|
</BaseLayout>
|
|
|
|
<style></style>
|