Files
atashdotdev/src/pages/index.astro
Atridad Lahiji 9c95362800
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m26s
Added a new logo loop + optimized the component setup (DRY)
2026-01-29 13:48:37 -07:00

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>