Skip to content

Commit

Permalink
updated contact form blurb to show by default
Browse files Browse the repository at this point in the history
  • Loading branch information
joevaugh4n committed Sep 27, 2024
1 parent 3d73464 commit 517ca32
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
26 changes: 21 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/Contact.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import H2 from "./atoms/H2.astro";
interface Props {
title?: string;
description?: string;
blurb?: boolean;
blurb: boolean;
}
const {
title = "Get in touch",
description = "Interested in what I do and how I can help? Chatting to me is free, and I can work to your budget :)",
blurb,
blurb = true,
} = Astro.props;
---

Expand Down
1 change: 1 addition & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ const linkedinIcon = "tabler:brand-linkedin";
</PreviousClients>
<HR />
<ContactForm
blurb
description="Interested in what I do and how I can help? Chatting to me is free, and I can work to your budget :)"
title="Get in touch"
/>
Expand Down

0 comments on commit 517ca32

Please sign in to comment.