Skip to content

Commit af5aca5

Browse files
committed
feat: projects and certs
1 parent be1fffc commit af5aca5

19 files changed

+1581
-333
lines changed

package-lock.json

Lines changed: 1269 additions & 166 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,15 @@
1212
"preview": "vite preview"
1313
},
1414
"dependencies": {
15+
"@fortawesome/free-brands-svg-icons": "^6.6.0",
16+
"@fortawesome/free-solid-svg-icons": "^6.6.0",
17+
"@fortawesome/react-fontawesome": "^0.2.2",
18+
"autoprefixer": "^10.4.20",
19+
"postcss": "^8.4.49",
1520
"react": "^18.3.1",
16-
"react-dom": "^18.3.1"
21+
"react-dom": "^18.3.1",
22+
"react-router-dom": "^6.28.0",
23+
"tailwindcss": "^3.4.15"
1724
},
1825
"devDependencies": {
1926
"@types/react": "^18.3.3",

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

src/App.tsx

Lines changed: 13 additions & 164 deletions
Original file line numberDiff line numberDiff line change
@@ -1,171 +1,20 @@
1-
import "./App.css";
1+
import Header from "./components/Header";
2+
import About from "./components/About";
3+
import Projects from "./components/Projects";
4+
import Certifications from "./components/Certifications";
5+
import Footer from "./components/Footer";
26

37
function App() {
48
return (
5-
<>
6-
<header>
7-
<h1>Sam Hillier</h1>
8-
<h2>Software Engineer</h2>
9-
</header>
10-
<main>
11-
<section>
12-
<ul>
13-
<li>JavaScript</li>
14-
<li>TypeScript</li>
15-
<li>Python</li>
16-
<li>Java</li>
17-
<li>C++</li>
18-
<li>HTML</li>
19-
<li>CSS</li>
20-
</ul>
21-
</section>
22-
<section>
23-
<h3>About Me</h3>
24-
<p>
25-
Full-stack, results-oriented Computer Science graduate with a proven
26-
record of academic and project success, seeking to apply programming
27-
skills and a collaborative approach to contribute to organisational
28-
excellence in system health, scalability, and longevity.
29-
</p>
30-
<p>
31-
If you're interested in working with me or have a question, please
32-
feel free to get in touch.
33-
</p>
34-
<img
35-
src="https://raw.githubusercontent.com/SamHillierDev/samhillier.dev/main/src/assets/images/sam-hillier.jpg"
36-
width="200"
37-
height="200"
38-
alt="Sam Hillier"
39-
></img>
40-
</section>
41-
<section>
42-
<h3>Projects</h3>
43-
<article>
44-
<a
45-
href="https://cs2.team"
46-
target="_blank"
47-
rel="noopener noreferrer"
48-
aria-label="Visit CS2.TEAM website"
49-
>
50-
<h4>CS2.TEAM</h4>
51-
</a>
52-
<p>Find esports teams and players on CS2.TEAM.</p>
53-
</article>
54-
<article>
55-
<a
56-
href="https://enjindex.com"
57-
target="_blank"
58-
rel="noopener noreferrer"
59-
aria-label="Visit ENJindex website"
60-
>
61-
<h4>ENJindex</h4>
62-
</a>
63-
<p>ENJindex, explore NFTs and crypto collectibles.</p>
64-
</article>
65-
</section>
66-
<section>
67-
<h3>Certifications</h3>
68-
<a href="#" target="_blank" rel="noopener noreferrer">
69-
<h4>AWS Certified Solutions Architect - Associate</h4>
70-
<img
71-
src="https://raw.githubusercontent.com/SamHillierDev/samhillier.dev/main/src/assets/images/certifications/aws-solutions-architect-associate.png"
72-
alt="AWS Certified Solutions Architect - Associate"
73-
width="100"
74-
height="100"
75-
></img>
76-
</a>
77-
<a
78-
href="https://credly.com/badges/cd51660c-b4b3-4348-8474-6111af2d9f59"
79-
target="_blank"
80-
rel="noopener noreferrer"
81-
>
82-
<h4>AWS Certified AI Practitioner</h4>
83-
<img
84-
src="https://raw.githubusercontent.com/SamHillierDev/samhillier.dev/main/src/assets/images/certifications/aws-ai-practitioner-foundational.png"
85-
alt="AWS Certified AI Practitioner"
86-
width="100"
87-
height="100"
88-
></img>
89-
</a>
90-
<a
91-
href="https://credly.com/badges/a4984764-8bc9-44e6-914a-c7c65767c9e1"
92-
target="_blank"
93-
rel="noopener noreferrer"
94-
>
95-
<h4>AWS Certified Cloud Practitioner</h4>
96-
<img
97-
src="https://raw.githubusercontent.com/SamHillierDev/samhillier.dev/main/src/assets/images/certifications/aws-cloud-practitioner-foundational.png"
98-
alt="AWS Certified Cloud Practitioner"
99-
width="100"
100-
height="100"
101-
></img>
102-
</a>
103-
</section>
9+
<div className="bg-gray-50 text-gray-900 min-h-screen">
10+
<Header />
11+
<main className="container mx-auto p-4 md:p-8">
12+
<About />
13+
<Projects />
14+
<Certifications />
10415
</main>
105-
<footer>
106-
<section>
107-
<a
108-
href="https://github.com/SamHillierDev"
109-
target="_blank"
110-
rel="noopener noreferrer"
111-
aria-label="GitHub profile"
112-
>
113-
GitHub
114-
</a>
115-
<a
116-
href="https://linkedin.com/in/samhillier"
117-
target="_blank"
118-
rel="noopener noreferrer"
119-
aria-label="LinkedIn profile"
120-
>
121-
LinkedIn
122-
</a>
123-
<a
124-
href="https://x.com/Zyphaex"
125-
target="_blank"
126-
rel="noopener noreferrer"
127-
aria-label="X profile"
128-
>
129-
X
130-
</a>
131-
<a
132-
href="https://instagram.com/Zyphaex"
133-
target="_blank"
134-
rel="noopener noreferrer"
135-
aria-label="Instagram profile"
136-
>
137-
Instagram
138-
</a>
139-
</section>
140-
<section>
141-
<iframe
142-
src="https://github.com/sponsors/SamHillierDev/button"
143-
id="sponsor"
144-
title="GitHub Sponsor"
145-
height="32"
146-
width="114"
147-
style={{ border: 0, borderRadius: "6px" }}
148-
></iframe>
149-
</section>
150-
<section>
151-
<nav>
152-
<a href="#" aria-label="About page">
153-
About
154-
</a>
155-
<a href="#" aria-label="Contact page">
156-
Contact
157-
</a>
158-
<a href="#" aria-label="Terms and Conditions page">
159-
Terms & Conditions
160-
</a>
161-
<a href="#" aria-label="Privacy Policy page">
162-
Privacy Policy
163-
</a>
164-
</nav>
165-
<p>© 2024 Sam Hillier. All Rights Reserved.</p>
166-
</section>
167-
</footer>
168-
</>
16+
<Footer />
17+
</div>
16918
);
17019
}
17120

44.1 KB
Loading
22.4 KB
Loading
27.9 KB
Loading
692 KB
Loading
26.5 KB
Loading
345 KB
Loading

0 commit comments

Comments
 (0)