Skip to content

Commit

Permalink
rearrange images so gh-pages can render
Browse files Browse the repository at this point in the history
  • Loading branch information
L23de committed Jan 3, 2022
1 parent 434ea6f commit ad46b6a
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 73 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Vue 3 + Vite
# l23de.github.io

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
My personal website!

## Recommended IDE Setup
Get to know me and be sure to leave any suggestions in the Github Issues pane

- [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar)
## Installation

```bash
yarn install
```
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="/src/css/app.scss" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
6 changes: 3 additions & 3 deletions src/assets/CareerData.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"company": "Optum",
"logo_url": "/src/assets/optum.png",
"logo_url": "/images/optum.png",
"positions": [
{
"title": "Software Engineer Intern",
Expand All @@ -13,7 +13,7 @@
},
{
"company": "Lehigh University",
"logo_url": "/src/assets/lehigh.svg",
"logo_url": "/images/lehigh.svg",
"positions": [
{
"title": "Junior Systems Administrator",
Expand All @@ -37,7 +37,7 @@
},
{
"company": "JHU Engineering Innovation",
"logo_url": "/src/assets/jhu.png",
"logo_url": "/images/jhu.png",
"positions": [
{
"title": "Summer Program Participant",
Expand Down
Binary file removed src/assets/logo.png
Binary file not shown.
64 changes: 0 additions & 64 deletions src/assets/optum.svg

This file was deleted.

2 changes: 1 addition & 1 deletion src/layouts/CareerEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const barStyle = "{}" // CSS for the scroll area's scrollbar
<template>
<div id="career-entry">
<div id="logo">
<img :src="careerData[entryData].logo_url" />
<img :src="careerData[entryData].logo_url" :alt="careerData[entryData].company + ' Logo'" />
</div>

<div id="content">
Expand Down

0 comments on commit ad46b6a

Please sign in to comment.