Files for my website bwc9876.dev

Add About Me

+81 -2
+9 -1
src/layouts/Layout.astro
··· 6 6 7 7 import defaultOg from "@images/default-og.png"; 8 8 import Socials from "@components/Socials.astro"; 9 + import { Icon } from "astro-icon"; 9 10 10 11 export interface Props { 11 12 title: string; ··· 100 101 <slot /> 101 102 </main> 102 103 <footer class="container"> 103 - <p><a href="#top">Back To Top</a></p> 104 + <p> 105 + <a 106 + aria-label="Back To Top" 107 + data-tooltip="Back To Top" 108 + data-placement="top" 109 + href="#top"><Icon width="1.5rem" height="1.5rem" name="bi:arrow-bar-up" /></a 110 + > 111 + </p> 104 112 <p class="copyright">© Ben C 2023</p> 105 113 <Socials labelPlacement="top" /> 106 114 </footer>
+72 -1
src/pages/index.astro
··· 19 19 desktop apps 20 20 </a>. I enjoy pretty much any aspect of software development. 21 21 </p> 22 - <p>On this site you'll find my current and past projects.</p> 22 + <p>On this site you'll find info about me and my projects.</p> 23 + 24 + <h2>About Me</h2> 25 + <p> 26 + I'm an 18 year old developer from Pennsylvania, USA. I first started programming with Unity 27 + games but then quickly began doing web development and then exapanded into anything I was 28 + interested in. I've been programming for about 6 years now and hope that I can continue to 29 + pursue a career in this industry. 30 + </p> 31 + <p> 32 + I then went to trade school for Information Technology programming, and learned a lot about 33 + best practices and the software development life cycle. I participated in both SkillsUSA ad 34 + TSA as well and got 1st place in states for Video Game Design in TSA, as well as 1st place 35 + in Computer Programming at states and 4th at nationals in SkillsUSA. 36 + </p> 37 + <p> 38 + Over the course of time time at trade school I got OSHA, IC3, and Pennsylvania State 39 + certified. 40 + </p> 41 + <p> 42 + Also during my time at trade school I join an online community of modders for the game Outer 43 + Wilds. This communiy helped me go above and beyond with my development, continually 44 + motiviating me to try new things and publish my work. 45 + </p> 46 + <p> 47 + I'll be starting college next year at West Chester University for Computer Science, and hope 48 + that I can continue to expand my skillset and improve as a dev. 49 + </p> 50 + <p> 51 + My end goal is to work at a semi-big company and continue to contribute to open source while 52 + working. 53 + </p> 54 + 55 + <h2>What I Know</h2> 56 + <p> 57 + I've tried my best to be a well-rounded developer and over the years, here's a list of some 58 + of the things I work in: 59 + </p> 60 + <ul class="know-list"> 61 + <li>Python</li> 62 + <li>C#</li> 63 + <li>Unity</li> 64 + <li>Django</li> 65 + <li>HTML</li> 66 + <li>CSS / SASS</li> 67 + <li>Rust</li> 68 + <li>JavaScript / TypeScript</li> 69 + <li>Node</li> 70 + <li>GitHub Actions</li> 71 + <li>React</li> 72 + <li>Astro</li> 73 + <li>Tauri</li> 74 + <li>WinForms</li> 75 + <li>Visual Basic / VBA</li> 76 + <li>C++</li> 77 + <li>Java</li> 78 + <li>ActiveDirectory</li> 79 + </ul> 80 + <p>Below you can find some of my recent projects where I use these technologies.</p> 23 81 24 82 <hgroup> 25 83 <h2>Recent Projects</h2> ··· 37 95 display: flex; 38 96 justify-content: center; 39 97 width: 100%; 98 + } 99 + 100 + .know-list { 101 + display: flex; 102 + flex-wrap: wrap; 103 + gap: calc(var(--spacing) * 2); 104 + } 105 + 106 + .know-list li { 107 + list-style: none; 108 + padding: var(--spacing); 109 + border: 2px solid var(--primary); 110 + border-radius: 5px; 40 111 } 41 112 </style>