+
+
\ No newline at end of file
diff --git a/src/components/Contact/Page.astro b/src/components/Contact/Page.astro
new file mode 100644
index 0000000..0c3701a
--- /dev/null
+++ b/src/components/Contact/Page.astro
@@ -0,0 +1,48 @@
+---
+import TitleCard from '../TitleCard.astro';
+import ContactForm from './ContactForm.astro';
+
+---
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/Experience/ExperienceBox.astro b/src/components/Experience/ExperienceBox.astro
index 380e0bf..ed20c2e 100644
--- a/src/components/Experience/ExperienceBox.astro
+++ b/src/components/Experience/ExperienceBox.astro
@@ -48,6 +48,7 @@ const color: string = experience.color
box-shadow: 0 8px 20px rgba(0,0,0,0.18);
color: white;
transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
+ margin-top: 0.5rem;
}
.container:hover {
diff --git a/src/components/Experience/Page.astro b/src/components/Experience/Page.astro
index 8fd0ff1..babc12f 100644
--- a/src/components/Experience/Page.astro
+++ b/src/components/Experience/Page.astro
@@ -8,8 +8,8 @@ const sortedExperience = experience.sort((a, b) => b.start.getTime() - a.start.g
---