Skip to content

Commit a2cbc6d

Browse files
Astro check changes
1 parent db5fc63 commit a2cbc6d

18 files changed

Lines changed: 65 additions & 75 deletions
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
2-
name: "prepare-release"
2+
name: 'prepare-release'
33

44
on:
55
push:
66
branches:
7-
- "main"
7+
- 'main'
88
workflow_dispatch:
9-
9+
1010
jobs:
1111
pre-release:
12-
name: "Prepare Release"
13-
runs-on: "ubuntu-latest"
12+
name: 'Prepare Release'
13+
runs-on: 'ubuntu-latest'
1414

1515
steps:
16-
- uses: "marvinpinto/action-automatic-releases@latest"
16+
- uses: 'marvinpinto/action-automatic-releases@latest'
1717
with:
18-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
19-
automatic_release_tag: "latest"
18+
repo_token: '${{ secrets.GITHUB_TOKEN }}'
19+
automatic_release_tag: 'latest'
2020
prerelease: true
21-
title: "Next Release"
21+
title: 'Next Release'

site/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const viteConfig = {
1919
preprocessorOptions: {
2020
scss: {
2121
logger: {
22-
warn: () => { },
22+
warn: () => {},
2323
},
2424
},
2525
},

site/src/assets/scss/base/_root.scss

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,11 @@
4444
--text-decoration-color-hover: var(--link-color);
4545

4646
// gradient tokens
47-
--text-gradient: linear-gradient(315deg,
48-
light-dark(#0f172a, var(--color-wire-glow)) 25%,
49-
light-dark(var(--color-wire-dim), #00d1b7));
47+
--text-gradient: linear-gradient(
48+
315deg,
49+
light-dark(#0f172a, var(--color-wire-glow)) 25%,
50+
light-dark(var(--color-wire-dim), #00d1b7)
51+
);
5052

5153
// theme settings
5254
--radius-small: 3px;
@@ -154,4 +156,4 @@
154156
// dark color scheme overrides
155157
.darkmode {
156158
color-scheme: dark;
157-
}
159+
}

site/src/components/Feature.astro

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,35 +34,35 @@ const { icon = 'mdi:rocket', title = 'Title' }: Props = Astro.props
3434
<style lang="scss">
3535
.hud-card {
3636
position: relative;
37-
padding: var(--space-l);
38-
background: var(--surface-color);
37+
backdrop-filter: blur(8px);
38+
transition: all var(--animation-speed-fast) var(--cubic-bezier);
3939
border: 1px solid var(--border-color-subtle);
4040
border-left: 4px solid var(--color-wire-glow);
4141
border-radius: var(--radius-small);
42-
transition: all var(--animation-speed-fast) var(--cubic-bezier);
43-
backdrop-filter: blur(8px);
42+
background: var(--surface-color);
43+
padding: var(--space-l);
4444

4545
&:hover {
4646
transform: translateY(-4px);
47-
border-color: var(--color-wire-glow);
4847
box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.2);
49-
48+
border-color: var(--color-wire-glow);
49+
5050
:global([data-icon]) {
5151
filter: drop-shadow(0 0 8px var(--color-wire-glow));
5252
}
5353
}
5454

5555
:global([data-icon]) {
56+
transition: all var(--animation-speed-fast) var(--cubic-bezier);
5657
inline-size: 3rem;
5758
block-size: auto;
5859
color: var(--color-wire-glow);
59-
transition: all var(--animation-speed-fast) var(--cubic-bezier);
6060
}
6161

6262
.content {
6363
p {
64-
color: var(--foreground-color);
6564
opacity: 0.8;
65+
color: var(--foreground-color);
6666
font-size: 0.95rem;
6767
line-height: 1.6;
6868
}

site/src/components/Footer.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ const currentYear = new Date().getFullYear()
4444
<p>
4545
&copy; {currentYear} pywire. All rights reserved.
4646
</p>
47-
<p>
48-
Made with ❤️ for the Python community.
49-
</p>
47+
<p>Made with ❤️ for the Python community.</p>
5048
</div>
5149
</section>
5250
</footer>

site/src/components/Navigation.astro

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ import Logo from './Logo.astro'
222222
top: 0;
223223
z-index: 100;
224224
backdrop-filter: blur(12px);
225-
background-color: light-dark(rgba(255, 255, 255, 0.8), rgba(9, 10, 17, 0.8));
226-
border-bottom: 1px solid var(--border-color-subtle);
227225
transition: all var(--animation-speed-fast) var(--cubic-bezier);
226+
border-bottom: 1px solid var(--border-color-subtle);
227+
background-color: light-dark(rgba(255, 255, 255, 0.8), rgba(9, 10, 17, 0.8));
228228

229229
> .container {
230230
display: flex;
@@ -260,34 +260,34 @@ import Logo from './Logo.astro'
260260
}
261261

262262
a {
263-
font-family: var(--font-family-mono);
264-
text-transform: lowercase;
265-
font-size: 0.9rem;
263+
transition: all var(--animation-speed-fast) var(--cubic-bezier);
264+
border-radius: var(--radius-small);
265+
padding: 0.5rem;
266266
color: var(--foreground-color);
267+
font-size: 0.9rem;
268+
font-family: var(--font-family-mono);
267269
text-decoration: none;
268-
padding: 0.5rem;
269-
border-radius: var(--radius-small);
270-
transition: all var(--animation-speed-fast) var(--cubic-bezier);
270+
text-transform: lowercase;
271271

272272
&:hover,
273273
&:focus-visible,
274274
&.is-active {
275-
color: var(--color-wire-glow);
276275
background-color: light-dark(rgba(15, 23, 42, 0.05), rgba(0, 240, 255, 0.05));
276+
color: var(--color-wire-glow);
277277
}
278278
}
279279
}
280280
}
281281

282282
.type-icon {
283283
a {
284-
padding: 0 !important;
285284
background: none !important;
285+
padding: 0 !important;
286286
color: var(--foreground-color) !important;
287287

288288
&:hover {
289-
color: var(--color-wire-glow) !important;
290289
transform: translateY(-1px);
290+
color: var(--color-wire-glow) !important;
291291
}
292292

293293
svg {
@@ -300,16 +300,16 @@ import Logo from './Logo.astro'
300300
/* Mobile handling simplifies for toolbar */
301301
.mobile-menu {
302302
display: none;
303-
303+
304304
&.show {
305305
display: block;
306306
position: absolute;
307307
top: 100%;
308-
left: 0;
309308
right: 0;
309+
left: 0;
310+
border-bottom: 1px solid var(--border-color-subtle);
310311
background: var(--background-color);
311312
padding: 1rem;
312-
border-bottom: 1px solid var(--border-color-subtle);
313313
}
314314
}
315315
}

site/src/content/projects/project-01.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Voice-First Smart Home Assistant
33
author: John Doe
44
description: A comprehensive smart home solution designed specifically for users with visual impairments, featuring voice-first interactions and haptic feedback
5-
tags: ["Accessibility", "Smart-Home", "IoT"]
5+
tags: ['Accessibility', 'Smart-Home', 'IoT']
66
---
77

88
## Project Overview

site/src/content/projects/project-02.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Sign Language Bridge
33
author: Jane Smith
44
description: An AI-powered real-time sign language translation system that enables seamless communication between deaf and hearing individuals
5-
tags: ["Accessibility", "AI", "Computer Vision"]
5+
tags: ['Accessibility', 'AI', 'Computer Vision']
66
---
77

88
## Project Overview

site/src/content/projects/project-03.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: AccessGuard
33
author: Alex Rivera
44
description: A comprehensive web security solution that ensures both robust protection and WCAG 2.1 Level AAA compliance for enterprise websites
5-
tags: ["Security", "Accessibility"]
5+
tags: ['Security', 'Accessibility']
66
---
77

88
## Project Overview

site/src/content/projects/project-04.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Accessible Learning Hub
33
author: Sarah Johnson
44
description: An inclusive e-learning platform that adapts to various learning disabilities and provides personalized learning experiences for all students
5-
tags: ["Accessibility", "Education"]
5+
tags: ['Accessibility', 'Education']
66
---
77

88
## Project Overview

0 commit comments

Comments
 (0)