Skip to content

Commit

Permalink
fixing contact form
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanMarAntonsson committed Dec 12, 2024
1 parent 7905d48 commit c397c01
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/contact.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import DefaultLayout from '../layouts/DefaultLayout.astro';
import ContactForm from '../components/ContactForm.vue';
import PageTitle from '../components/PageTitle.astro';
export const prerender = false;
const pageTitle = "Contact";
---
<!-- TODO: Add Contact form and other contact information to this page -->
Expand All @@ -13,7 +13,8 @@ const pageTitle = "Contact";
<section>
<div>
<!-- // Styling Requires Tailwind CSS -->
<ContactForm server:defer />
<ContactForm server:defer client:load />
<p style="display:none;">moo</p>
</div>
</section>
</DefaultLayout>

0 comments on commit c397c01

Please sign in to comment.