diff --git a/public/images/profile/contact_photo.webp b/public/images/profile/contact_photo.webp new file mode 100644 index 0000000..e89c405 Binary files /dev/null and b/public/images/profile/contact_photo.webp differ diff --git a/public/images/socials.webp b/public/images/socials.webp new file mode 100644 index 0000000..11c0168 Binary files /dev/null and b/public/images/socials.webp differ diff --git a/src/components/contact/ContactComponent.astro b/src/components/contact/ContactComponent.astro index 72c9dc3..02566af 100644 --- a/src/components/contact/ContactComponent.astro +++ b/src/components/contact/ContactComponent.astro @@ -1,6 +1,6 @@ --- import { Image } from "astro:assets"; -import contactPhoto from "@/components/images/contact_photo.webp"; +import contactPhoto from "@/components/images/profile/contact_photo.webp"; import { AnimatedTooltip } from "@/components/ui/AnimatedToolTip"; --- diff --git a/src/pages/contact.astro b/src/pages/contact.astro index 7cbed4a..e713494 100644 --- a/src/pages/contact.astro +++ b/src/pages/contact.astro @@ -1,16 +1,11 @@ --- import NavBar from "../components/global/NavBar.astro"; -import Layout from "../layouts/Layout.astro"; +import PageLayout from "@/layouts/PageLayout.astro"; import ContactComponent from "../components/contact/ContactComponent.astro"; -import Card from "../components/global/Card.astro"; import Footer from "../components/global/FooterComponent.astro"; --- - - +

Contact

@@ -19,4 +14,4 @@ import Footer from "../components/global/FooterComponent.astro";