diff options
| -rw-r--r-- | src/pages/index.astro | 15 | ||||
| -rw-r--r-- | src/scss/style.scss | 8 |
2 files changed, 22 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 2d24fd1..08440a5 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -80,7 +80,8 @@ import Base from "../layout/Base.astro"; </div> <div> <p> - Visitez mon studio, <a href="https://entreesortie.net/">Entrée Sortie Production</a + Visitez mon studio, <a href="https://entreesortie.net/" target="_blank" + >Entrée Sortie Production</a >. </p> </div> @@ -159,6 +160,18 @@ import Base from "../layout/Base.astro"; </p> </div> </section> + <section class="contact"> + <h2>Contact</h2> + <p>Arnaud Hergès - <a href="tel:+33688266608">06 88 26 66 08</a></p> + <p> + Instagram : <a href="https://instagram.com/@arnaudherges" target="_blank" + >@arnaudherges</a + > + </p> + <p> + Mail : <a href="mailto:arnaud@herges.fr">arnaud@herges.fr</a> + </p> + </section> </main> <script is:inline defer> const sections = document.querySelectorAll("section[data-scroll]"); diff --git a/src/scss/style.scss b/src/scss/style.scss index 0867c84..0c33e20 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -233,3 +233,11 @@ section[data-scroll] .content { width: 100%; } } + +.contact { + min-height: 66vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} |
