Skip to content

Commit

Permalink
header
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyjoeseph committed Feb 21, 2024
1 parent 0aa499d commit 074349b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/components/Top.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
<a class:hide={!showHome} href={links.home} class="link">home</a>
<a class:hide={showHome} href={links.about} class="link">about</a>
<b class="separator">&vert;</b>
<a href={links.resume} class="link">resume</a>
<a href={links.resume} class="link" target="_blank">resume</a>
<b class="separator">&vert;</b>
<a href={links.reel} class="link">reel</a>
<a href={links.reel} class="link" target="_blank">reel</a>
<b class="separator">&vert;</b>
<a href="tel:9174267027" class="link">phone</a>
<a href="mailto:[email protected]" class="link" target="_blank">email</a>
<b class="separator">&vert;</b>
<a href="mailto:[email protected]" class="link">email</a>
<a href="https://instagram.com/tony.balo.nyc/" class="link" target="_blank"
><img src="images/ig_logo.png" alt="instagram logo" width="20" /></a
>
</span>
</div>

Expand Down Expand Up @@ -75,8 +77,5 @@
.separator {
display: inline !important;
}
main {
max-width: none;
}
}
</style>
4 changes: 4 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
import Gallery from 'svelte-image-gallery';
</script>

<svelte:head>
<title>Anthony Gabriele NYC Actor</title>
</svelte:head>

<main>
<Top />
<Gallery>
Expand Down
4 changes: 4 additions & 0 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
import Top from '../../components/Top.svelte';
</script>

<svelte:head>
<title>Anthony Gabriele NYC Actor - About</title>
</svelte:head>

<main>
<Top showHome={true} />
<div class="bio">
Expand Down
File renamed without changes.
Binary file added static/images/ig_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 074349b

Please sign in to comment.