diff --git a/public/PfpIcon 1.png b/public/PfpIcon 1.png new file mode 100644 index 0000000..09e167a Binary files /dev/null and b/public/PfpIcon 1.png differ diff --git a/public/PfpIcon.png b/public/PfpIcon.png new file mode 100644 index 0000000..03b595b Binary files /dev/null and b/public/PfpIcon.png differ diff --git a/public/favicon (2).svg b/public/favicon (2).svg new file mode 100644 index 0000000..33727e5 --- /dev/null +++ b/public/favicon (2).svg @@ -0,0 +1,9 @@ + + avatar + + + + + + \ No newline at end of file diff --git a/public/favicon.svg b/public/favicon.svg index ba0732a..b9280e4 100644 --- a/public/favicon.svg +++ b/public/favicon.svg @@ -1,11 +1,11 @@ - - - - - - - - - - - + + New Project + + + + + + + + \ No newline at end of file diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 02a7d40..5596f91 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -4,17 +4,5 @@ import Link from "./Link.astro"; --- diff --git a/src/components/Header.astro b/src/components/Header.astro index 1faaded..b5d19f8 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -8,7 +8,9 @@ const { title, description } = Astro.props ---
+ +

{title}

{description}

-
\ No newline at end of file + diff --git a/src/pages/index.astro b/src/pages/index.astro index 407b085..d0a7f91 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -14,20 +14,20 @@ const fullName = persona.firstName + " " + persona.secondName;
- + { - persona.sections.books.map((e) => ( + persona.sections.links.map((e) => ( )) }
- + { - persona.sections.experience.map((e) => ( + persona.sections.creations.map((e) => ( )) } diff --git a/src/persona.js b/src/persona.js index d97837b..5d62349 100644 --- a/src/persona.js +++ b/src/persona.js @@ -1,39 +1,34 @@ export const persona = { - firstName: "Jack", - secondName: "Frost", - description: "Independent craftsman, spirited man, mechanic", - email: "luckybastard@skiff.com", + 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: '' }, ], },