Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyrlex committed Aug 24, 2023
1 parent 4d1131a commit 04ffc7c
Show file tree
Hide file tree
Showing 7 changed files with 117 additions and 185 deletions.
98 changes: 49 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.20.4",
"@tsconfig/svelte": "^5.0.0",
"@types/node": "^20.4.2",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.28.0",
"eslint": "^8.47.0",
"eslint-plugin-svelte": "^2.30.0",
"postcss": "^8.4.26",
"svelte": "^4.0.5",
"svelte": "^4.2.0",
"svelte-check": "^3.4.6",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.3",
"tslib": "^2.4.1",
"typescript": "^5.1.6",
"vite": "^4.4.2"
"vite": "^4.4.9"
},
"type": "module",
"dependencies": {
"dotenv": "^16.3.1"
}
}
}
31 changes: 31 additions & 0 deletions src/components/meta.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<script lang="ts">
export let data: {
title: string;
url: string;
};
</script>

<title>Jaren | {data.title}</title>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Hi, I’m Jaren Goldberg. Check out my website to see what I do!"
/>
<link
rel="shortcut icon"
href="https://cdn.discordapp.com/avatars/292821168833036288/6e131f90d887abb0b97b1d2c0ec659d2.png?size=4096"
type="image/png"
/>
<meta property="og:title" content={data.title} />
<meta
property="og:description"
content="Hi, I’m Jaren Goldberg. Check out my website to see what I do!"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jaren.me/{data.url}" />
<meta
property="og:image"
content="https://cdn.discordapp.com/avatars/292821168833036288/6e131f90d887abb0b97b1d2c0ec659d2.png?size=4096"
/>
<meta content="#06B6D4" data-react-helmet="true" name="theme-color" />
75 changes: 24 additions & 51 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,57 +1,30 @@
<script>
import Meta from "../components/meta.svelte";
</script>

<svelte:head>
<title>Jaren.me | Home</title>
<meta charSet='utf-8' />
<meta
name='viewport'
content='width=device-width, initial-scale=1'
/>
<meta
name='description'
content='Hi, I’m Jaren Goldberg. Check out my website to see what I do!'
/>
<link
rel='shortcut icon'
href='https://cdn.discordapp.com/avatars/292821168833036288/6e131f90d887abb0b97b1d2c0ec659d2.png?size=4096'
type='image/png'
/>
<meta
property='og:title'
content='Home'
/>
<meta
property='og:description'
content='Hi, I’m Jaren Goldberg. Check out my website to see what I do!'
/>
<meta
property='og:type'
content='website'
/>
<meta
property='og:url'
content='https://jaren.me'
/>
<meta
property='og:image'
content='https://cdn.discordapp.com/avatars/292821168833036288/6e131f90d887abb0b97b1d2c0ec659d2.png?size=4096'
/>
<meta
content='#06B6D4'
data-react-helmet='true'
name='theme-color'
/>
<Meta data={{ title: "Home", url: "" }} />
</svelte:head>

<div class="bg-stone-900 text-center text-gray-300">
<h1 class="text-8xl font-semibold p-10">hey!</h1>
<p class="text-2xl w-1/2 max-w-fit mx-auto">
My name is Jaren Goldberg and I'm from Northern Virginia. Currently I am a
rising freshman at Virginia Tech and will be majoring in Computer Science.
</p>
<h2 class="text-6xl p-8">A summary</h2>
<p class="text-2xl w-1/2 max-w-fit mx-auto">
Performing exciting shows with my band, lifting heavy weights in the gym,
photographing the night sky, doing the daily chess.com puzzle are all
activies I enjoy. In addition to all that, professional programming is my
goal (I even built this website).
<h1 class="text-8xl font-semibold p-10">Hey!</h1>
<p class="text-2xl w-1/3 max-w-fit mx-auto">
My name is Jaren Goldberg. Currently I am a freshman at Virginia Tech and
plan to major in Computer Science. I enjoy many activies including sports
and the gym, astronomy, playing music with my band, and being outside in
nature.
</p>
<div class="max-w-fit mx-auto m-5">
<a
href="https://github.com/Fyrlex"
target="_blank"
rel="noreferrer noopener"
>
<img
alt="followers"
title="Follow me on Github"
src="https://img.shields.io/github/followers/Fyrlex?color=236ad3&style=for-the-badge&logo=github&label=Follow"
/>
</a>
</div>
</div>
Loading

0 comments on commit 04ffc7c

Please sign in to comment.