Added contact form
All checks were successful
Deploy / build-and-publish (push) Successful in 1m18s
Deploy / deploy (push) Successful in 13s

This commit is contained in:
2024-09-29 18:23:41 +03:00
parent 47f367c96b
commit 0e72c78174
5 changed files with 125 additions and 22 deletions

View File

@@ -4,7 +4,7 @@
import About from "./About.svelte";
import Projects from "./Projects/Projects.svelte";
import Footer from "./Footer.svelte";
// import ContactForm from "./ContactForm/ContactForm.svelte";
import ContactForm from "./ContactForm/ContactForm.svelte";
export let data;
</script>
@@ -14,6 +14,6 @@
<Hero starCount={data.starCount}></Hero>
<About></About>
<Projects></Projects>
<!-- <ContactForm></ContactForm>-->
<ContactForm></ContactForm>
<Footer></Footer>
</main>