Skip to content

Commit f382436

Browse files
committed
Update info
1 parent 54963b8 commit f382436

File tree

5 files changed

+27
-25
lines changed

5 files changed

+27
-25
lines changed

src/components/AboutMe.astro

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<style>
22
a {
3-
color: inherit;
3+
color: #e4a056;
44
font-weight: 800;
55
text-decoration: none;
66
background:
@@ -53,16 +53,21 @@ code:not(.tree) {
5353

5454
<article>
5555
<section>
56-
<h2>Hi, I'm Danny!</h2>
56+
<h2>Hello, I'm Danny.</h2>
5757
<p>
58-
I'm studying Computer Science at the <a href="https://york.ac.uk">University of York</a> and I'm the Technical Director at <a href="https://class7.consulting">Class 7 Consulting</a>.
58+
I'm part of the HPC Engineering Team <a href="https://altoslabs.com">@Altos Labs</a> and the Technical Director of <a href="https://class7.consulting">Class 7 Consulting</a>.
5959
</p>
6060
<p>
61-
I'm passionate about engineering bespoke solutions to real-world problems.
62-
63-
I build full-stack web applications, IT solutions, and promotional websites for businesses across the UK.
64-
65-
My clients include startups and established companies in industries such as finance, insurance and retail.
61+
I have a deep passion for writing efficient and robust software to solve complex and interesting problems. <a href="https://github.com/danny-burrows">My GitHub</a> is home to a few free and open source projects, one such is <a href="https://github.com/danny-burrows/rotate-screen"><code>rotate-screen</code></a>, which has been featured in <a href="https://www.geeksforgeeks.org/build-an-application-for-screen-rotation-using-python/">articals in GeeksForGeeks</a>.
62+
</p>
63+
<p>
64+
As someone who loves Open Source, I love contributing back to great projects, be it <a href="https://github.com/withastro/astro/pull/823">documentation for the Astro framework</a> or <a href="https://github.com/ratatui/ratatui/pull/596">bugfixes for the popular Rust crate Ratatui</a>.
65+
</p>
66+
<p>
67+
At <a href="https://class7.consulting">Class 7 Consulting</a> I have the pleasure of building full-stack web applications like the marine insurance underwriting sofware, <a href="">Loki</a>. I architect IT solutions and develop promotional websites for businesses across the UK. My clients include startups and established companies in industries such as finance, insurance and retail.
68+
</p>
69+
<p>
70+
Please get in touch via my <a href="https://www.linkedin.com/in/danny-burrows/">LinkedIn</a> if you need software expertise.
6671
</p>
6772
<h3>Technologies I'm experienced in:</h3>
6873
</section>

src/components/Header.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ code {
4141
<ProfileImg client:load/>
4242
<div>
4343
<h1>Danny Burrows</h1>
44-
<code>Software Architect</code>
44+
<code>Software Engineer</code>
4545
<Location />
4646
</div>
4747
</div>
48-
</header>
48+
</header>

src/components/Location.astro

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,21 @@ a {
88
display: flex;
99
align-items: center;
1010
width: fit-content;
11-
padding: 5px 10px 3px 10px;
11+
padding: 6px 10px 6px 10px;
1212

1313
position: relative;
1414
background-color: var(--background-color-light);
1515
color: var(--accent-color);
1616
border-bottom: transparent 2px;
1717
border: solid 2px;
18-
border-radius: 100px;
18+
border-radius: 20px;
1919

20-
transition: filter ease-out .2s;
20+
transition: filter ease-out .4s;
21+
transition: border-radius ease .4s;
2122
}
2223
a:hover {
2324
--test: var(--accent-color-2);
25+
border-radius: 10px;
2426
}
2527
a:active {
2628
filter: grayscale(100%) brightness(60%);
@@ -39,9 +41,6 @@ h5 {
3941
background-repeat: no-repeat;
4042
transition: background-size 400ms;
4143
}
42-
a:hover > h5, a:active > h5, a:focus > h5 {
43-
background-size: 0 0.1em, 100% 0.1em;
44-
}
4544

4645
i {
4746
font-size: .6ch;
@@ -51,7 +50,7 @@ i {
5150
}
5251
</style>
5352

54-
<a href="https://york.ac.uk">
53+
<a href="https://altoslabs.com">
5554
<i class="fas fa-map-marker-alt icon"></i>
56-
<h5>University of York &bull; UK</h5>
57-
</a>
55+
<h5>Altos Labs &bull; Cambridge UK</h5>
56+
</a>

src/components/portfolio/Portfolio.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ import PortfolioItem from './PortfolioItem.jsx'
8080

8181
<PortfolioItem
8282
title="Rotate Screen"
83-
content="Open source python project with 500+ monthly downloads."
83+
content="Open source python project with 1.5k+ monthly downloads."
8484
link="https://github.com/danny-burrows/rotate-screen"
8585
imgUrl="/assets/portfolio/Rotate Screen.png"
8686
client:load />
@@ -123,4 +123,4 @@ import PortfolioItem from './PortfolioItem.jsx'
123123
<PortfolioItem client:load/>
124124
<PortfolioItem client:load/>
125125
<PortfolioItem client:load/>
126-
</div>
126+
</div>

src/pages/index.astro

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ import AboutMe from '../components/AboutMe.astro'
77
import Slider from '../components/slider/Slider.astro'
88
import Portfolio from '../components/portfolio/Portfolio.astro'
99
10-
let title = 'Danny Burrows • Software Architect';
10+
let title = 'Danny Burrows • Software Engineer';
1111
---
1212
<html lang="en">
1313
<head>
1414
<meta charset="UTF-8">
1515
<meta name="viewport" content="width=device-width, initial-scale=1">
1616
<title>{title}</title>
17-
<meta name="description" content="Hi, I'm Dan. I'm a freelance Software Developer for hire. I have experience building full stack web applications for clients in a variety of industries.">
17+
<meta name="description" content="Hello, I'm Danny. I'm part of the HPC Engineering Team at Altos Labs and the Technical Director of Class 7 Consulting. I love writing efficient and robust software to solve complex and interesting problems. Get in touch if you need software expertise.">
1818
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
1919
<link rel="stylesheet" href="/style/global.css">
2020

@@ -38,8 +38,6 @@ let title = 'Danny Burrows • Software Architect';
3838
<main>
3939
<Header />
4040

41-
<Banner>🚧 This site is still under construction! :-) 🚧</Banner>
42-
4341
<AboutMe />
4442

4543
<Slider />

0 commit comments

Comments
 (0)