Skip to content

Commit

Permalink
Removed invalid anchor tag
Browse files Browse the repository at this point in the history
  • Loading branch information
davidh167 committed Nov 28, 2024
1 parent 4866f32 commit 6b017e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 48 deletions.
45 changes: 0 additions & 45 deletions src/routes/aboutme/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,48 +1,3 @@
<slot/>



<style lang="postcss">
figure {
@apply flex relative flex-col;
}
figure svg,
.img-bg {
@apply w-64 h-64 md:w-80 md:h-80;
}
.img-bg {
@apply absolute z-[-1] rounded-full blur-[50px] transition-all;
animation:
pulse 5s cubic-bezier(0, 0, 0, 0.5) infinite,
glow 5s linear infinite;
}
@keyframes glow {
0% {
@apply bg-primary-400/50;
}
33% {
@apply bg-secondary-400/50;
}
66% {
@apply bg-tertiary-400/50;
}
100% {
@apply bg-primary-400/50;
}
}
@keyframes pulse {
50% {
transform: scale(1.5);
}
}
.hide-on-small {
display: none;
}
@media (min-width: 768px) {
.hide-on-small {
display: flex;
}
}
</style>
6 changes: 3 additions & 3 deletions src/routes/aboutme/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="container mx-auto flex justify-center items-center min-h-screen">
<div class="space-y-10 text-center flex flex-col items-center">


<h2 class="h2">About Me</h2>

<!-- Photo -->
Expand Down Expand Up @@ -82,9 +82,9 @@
</p>

<!-- Call to Action -->
<div class="mt-10">
<!-- <div class="mt-10">
<a href="/contact" class="btn variant-filled">Let’s Connect</a>
</div>
</div> -->
</div>
</div>
</div>

0 comments on commit 6b017e5

Please sign in to comment.