All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m26s
32 lines
1012 B
Plaintext
32 lines
1012 B
Plaintext
---
|
|
export const prerender = true;
|
|
|
|
import Layout from "../layouts/Layout.astro";
|
|
import { siteConfig } from "../config/site";
|
|
import HeroSection from "../components/sections/HeroSection.astro";
|
|
import ServicesSection from "../components/sections/ServicesSection.astro";
|
|
import ClientList from "../components/sections/ClientList.astro";
|
|
import AboutSection from "../components/sections/AboutSection.astro";
|
|
import ContactSection from "../components/sections/ContactSection.vue";
|
|
import Section from "../components/Section.astro";
|
|
|
|
const pageMetaInfo = {
|
|
title: siteConfig.name,
|
|
description: `Welcome to ${siteConfig.name} - ${siteConfig.description}`,
|
|
};
|
|
---
|
|
|
|
<Layout title={pageMetaInfo.title} description={pageMetaInfo.description}>
|
|
<HeroSection />
|
|
<ServicesSection />
|
|
<AboutSection />
|
|
<ClientList />
|
|
<Section
|
|
id="contact"
|
|
title={siteConfig.contact.mainTitle}
|
|
background="bg-base-200"
|
|
>
|
|
<ContactSection client:visible />
|
|
</Section>
|
|
</Layout>
|