Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #1

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/PfpIcon 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/PfpIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/favicon (2).svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 11 additions & 11 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 1 addition & 13 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,5 @@ import Link from "./Link.astro";
---

<footer>
<h3 class="text-l/primary dark:text-d/primary">Reach out</h3>
<p class="text-sm text-l/tertiary dark:text-d/tertiary">
drop me a line:
<Link target="_self" title={persona.email} url={`mailto:${persona.email}`} />
</p>
<p class="w-full">
{
persona.contacts.map((c) => (
<span class="text-l/tertiary dark:text-d/tertiary after:content-[',_'] last:after:content-none"><Link target="_blank" title={c.title} url={c.url} /></span>
))
}
</p>


</footer>
4 changes: 3 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ const { title, description } = Astro.props
---

<header>
<img src="https://github.com/winsparkk/aboutme/blob/main/public/PfpIcon%201.png?raw=true" style="width:100px;height:100px;">

<h1 class="text-base text-l/primary dark:text-d/primary">{title}</h1>
<p class="text-sm text-l/tertiary dark:text-d/tertiary">{description}</p>

</header>
</header>
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ const fullName = persona.firstName + " " + persona.secondName;
<Header title={fullName} description={persona.description} />
<Story story={persona.story} />
<Section>
<SectionTitle title="Books" />
<SectionTitle title="Links 🔗" />
<List>
{
persona.sections.books.map((e) => (
persona.sections.links.map((e) => (
<ListItem title={e.title} desc={e.desc} url={e.url} />
))
}
</List>
</Section>
<Section>
<SectionTitle title="Experience" />
<SectionTitle title="Creations 🧱" />
<List>
{
persona.sections.experience.map((e) => (
persona.sections.creations.map((e) => (
<ListItem title={e.title} desc={e.desc} url={e.url} />
))
}
Expand Down
43 changes: 19 additions & 24 deletions src/persona.js
Original file line number Diff line number Diff line change
@@ -1,39 +1,34 @@
export const persona = {
firstName: "Jack",
secondName: "Frost",
description: "Independent craftsman, spirited man, mechanic",
email: "[email protected]",
firstName: "Sparkk",
secondName: "",
description: "He/Him/Silly",
email: "",
story:
"Ad pariatur ad do incididunt laborum laboris ullamco voluptate consequat qui sint. Cillum nisi eu excepteur non ipsum qui commodo et veniam sunt. Minim quis eu reprehenderit irure nulla sit irure. Labore eu enim commodo enim eiusmod Lorem deserunt eiusmod ex eu. Dolor tempor nisi id voluptate minim. Sit occaecat eiusmod cillum et aliquip.",
"Just a silly little roblox developer, don't do much. Anyways, why did you click on this link? Are you bored, confused, scared?! Or you noticed i'm just better like that. Roblox Developer/Graphic Designer, scripter, ui design, and stupid. 😜",
sections: {
// You can create your own sections. But! For reducing headache in future, change the values (content), but don't change the keys ('title', 'desc').
books: [
links: [
{
title: "Shop Class as Soulcraft",
desc: 'Matthew B. Crawford',
url: 'https://www.amazon.com/Shop-Class-Soulcraft-Inquiry-Value/dp/0143117467?keywords=soulcraft&qid=1700379052&sr=8-3'
title: "Devforum",
desc: 'u/spa_rkk',
url: 'https://devforum.roblox.com/u/spa_rkk/summary'
},
{
title: "Why We Drive",
desc: 'Matthew B. Crawford',
url: 'https://www.amazon.com/Why-We-Drive-Toward-Philosophy/dp/0062741977?crid=2Z7ID7AXG1M8P&keywords=why+we+drive&qid=1700379191&sprefix=why+we+dri,aps,410&sr=8-1'
},
{
title: "The Tinkering Mind",
desc: 'Tillmann Vierkant',
url: 'https://www.amazon.com/Tinkering-Mind-Agency-Cognition-Extended-ebook/dp/B0BDZZGJRS?crid=2EJ2CHS3HAB8F&keywords=tinkering+mind&qid=1700379284&s=books&sprefix=tinkering+mi,stripbooks-intl-ship,296&sr=1-1'
title: "Roblox",
desc: '@spa_rkk',
url: 'https://www.roblox.com/users/1609236070/profile'
},
],
experience: [
creations: [
{
title: "Indian Motorcycles",
desc: '2010-now',
url: 'https://www.indianmotorcycle.com/en-us/'
title: "Voxel",
desc: 'Module',
url: 'https://devforum.roblox.com/t/voxel-free-volumetric-lighting-v07-late-beta/3259368'
},
{
title: "Harley Davidson",
desc: '1999-2010',
url: 'https://www.harley-davidson.com/us/en/index.html'
title: "Cubic",
desc: 'Coming Soon',
url: ''
},
],
},
Expand Down