-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
117 additions
and
185 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.