All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m2s
23 lines
739 B
Plaintext
23 lines
739 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 AboutSection from "../components/sections/AboutSection.astro";
|
|
import ContactSection from "../components/sections/ContactSection.tsx";
|
|
|
|
const pageMetaInfo = {
|
|
title: siteConfig.name,
|
|
description: `Welcome to ${siteConfig.name} - ${siteConfig.description}`,
|
|
};
|
|
---
|
|
|
|
<Layout title={pageMetaInfo.title} description={pageMetaInfo.description}>
|
|
<HeroSection />
|
|
<ServicesSection />
|
|
<AboutSection />
|
|
<ContactSection client:visible />
|
|
</Layout>
|