Skip to content

Commit

Permalink
Add services page for header
Browse files Browse the repository at this point in the history
  • Loading branch information
evanharmon1 committed Aug 16, 2024
1 parent 21c10aa commit 4bef516
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/pages/services.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
import Base from '../layouts/base.astro'
import type { CollectionEntry } from 'astro:content'
import coverSVG from '../assets/svg/astro/logomark-dark.svg'
import socialImage from '../assets/undraw/undraw_contact_us.png'
import ServicesComponent from '../components/services.astro'
import CTA from '../components/cta.astro'
const frontmatter: CollectionEntry<'page'>['data'] = {
title: 'About',
description: 'Why we do what we do',
coverSVG: coverSVG,
socialImage: socialImage
}
---

<Base frontmatter={frontmatter} schema='ServicesPage'>
<ServicesComponent />
<CTA />
</Base>

0 comments on commit 4bef516

Please sign in to comment.