generated from hellotham/hello-astro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21c10aa
commit 4bef516
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |