Skip to content

Commit

Permalink
links
Browse files Browse the repository at this point in the history
  • Loading branch information
goldentoaste committed May 21, 2023
1 parent c91f04d commit 67899f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
13 changes: 5 additions & 8 deletions web_service/src/lib/desktopMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,18 @@
name: "Home",
dest: "",
},
{
name: "About",
dest: "",
},
{
name: "DevPost",
dest: "",
dest: "https://devpost.com/",
},
{
name: "GitHub",
dest: "",
dest: "https://github.com/DFriend01/Watchdog",
},
{
name: "Watchdog",
dest: "",
dest: "app",
},
];
</script>
Expand All @@ -37,7 +34,7 @@
<div class="item-container">
{#each items as item}
<div class="item">
<a href={item.dest}>{item.name}</a>
<a target="_blank" href={item.dest}>{item.name}</a>
</div>
{/each}
</div>
Expand Down
13 changes: 5 additions & 8 deletions web_service/src/lib/navigation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,18 @@
name: "Home",
dest: "",
},
{
name: "About",
dest: "",
},
{
name: "DevPost",
dest: "",
dest: "https://devpost.com/",
},
{
name: "GitHub",
dest: "",
dest: "https://github.com/DFriend01/Watchdog",
},
{
name: "Watchdog",
dest: "",
dest: "app",
},
];
</script>
Expand Down Expand Up @@ -98,7 +95,7 @@
<div class="itemContainer">
{#each items as item}
<div class="item">
<a href={item.dest}>{item.name}</a>
<a target="_blank" href={item.dest}>{item.name}</a>
</div>
{/each}
</div>
Expand Down

1 comment on commit 67899f9

@vercel
Copy link

@vercel vercel bot commented on 67899f9 May 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

watchdog – ./

watchdog-git-main-dfriend01.vercel.app
watchdog-iota.vercel.app
watchdog-dfriend01.vercel.app

Please sign in to comment.