Skip to content

Commit

Permalink
projects/+page
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzsouza committed Sep 26, 2023
1 parent f33266f commit a29d02a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 8 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

# mattsouza.dev/

#### Video Demo: <https://www.youtube.com/watch?v=P4IWyp7gN_U>

#### Description:
This is a CS50 project. It's intended to showcase skills I've learned during and after the course. Indeed, the foundation of my web development knowledge comes from CS50 but other essential skills for creating this website were acquired later.

Expand Down Expand Up @@ -40,4 +38,4 @@ Finally, these are files that I created and/or modified for my personal website.

**src/routes/stack/+page.svelte**: Here I display icons of all the technologies that I'm acquainted with.

**src/routes/projects/+page.svelte**: This route is currently empty, but it's designed to hold all the projects that I want to showcase in the future.
**src/routes/projects/+page.svelte**: It's designed to hold all the projects that I want to showcase in the future.
61 changes: 56 additions & 5 deletions src/routes/projects/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,60 @@
</script>

<div class="flex flex-col justify-center items-center">
<img src="https://i.imgur.com/QCN8Vgn.png" alt="bg" class="animate-bounce h-200">
<h1 class="antialiased text-4xl font-madi text-gray-200 font-semibold tracking-widest select-none hover:animate-pulse">
Coming soon.
</h1>
<!-- Mobile -->
<div class="h-[90%] w-full grid sm:hidden items-start justify-evenly px-4 gap-2">
<a href="https://www.youtube.com/watch?v=BWpijxhNzvY" target="_blank" rel="noreferrer noopener">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden opacity-90">
<img src="https://i.imgur.com/5qiqfsX.png" alt="">
</div>
</a>
<div>
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden opacity-90 cursor-default">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</div>
<div>
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden opacity-90">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</div>
</div>

<!-- Desktop -->
<div class="hidden h-[90%] w-full sm:grid grid-flow-row items-center justify-evenly px-4">
<div class="h-full w-full grid grid-flow-col items-center gap-20">
<a href="https://www.youtube.com/watch?v=BWpijxhNzvY" target="_blank" rel="noreferrer noopener">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden
hover:scale-110 transform transition duration-300 opacity-90">
<img src="https://i.imgur.com/5qiqfsX.png" alt="">
</div>
</a>
<a href="" class="cursor-default rounded-lg border-solid overflow-hidden">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</a>
<a href="" class="cursor-default rounded-lg border-solid overflow-hidden">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</a>
</div>
<div class="h-full w-full grid grid-flow-col items-center gap-20">
<a href="" class="cursor-default rounded-lg border-solid overflow-hidden">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</a>
<a href="" class="cursor-default rounded-lg border-solid overflow-hidden">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</a>
<a href="" class="cursor-default rounded-lg border-solid overflow-hidden">
<div class="rounded-lg border-solid border-blue-950 border-2 overflow-hidden">
<img src="https://i.imgur.com/qLCcJLy.png" alt="" class="opacity-10">
</div>
</a>
</div>
</div>

0 comments on commit a29d02a

Please sign in to comment.