Skip to content

Commit 3344332

Browse files
author
ComputelessComputer
committed
enhanced ignore
1 parent e361279 commit 3344332

2 files changed

Lines changed: 22 additions & 6 deletions

File tree

.gitignore

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
11
# build output
22
dist/
3+
34
# generated types
45
.astro/
56

67
# dependencies
78
node_modules/
89

910
# logs
11+
*.log
1012
npm-debug.log*
1113
yarn-debug.log*
1214
yarn-error.log*
1315
pnpm-debug.log*
1416

15-
1617
# environment variables
1718
.env
18-
.env.production
19+
.env.*
20+
!.env.example
1921

20-
# macOS-specific files
22+
# OS-specific
2123
.DS_Store
24+
Thumbs.db
2225

23-
# jetbrains setting folder
26+
# editors/IDEs
2427
.idea/
25-
.vercel
28+
.vscode/
29+
*.swp
30+
*.swo
31+
32+
# vercel
33+
.vercel/

src/components/Header.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const navItems = [
2626
)}
2727
</h1>
2828
<p class="subtitle" data-full-text={subtitle}>
29-
<span class="subtitle-text">Co-founder & Co-CEO at <a href="https://hyprnote.com" target="_blank" rel="noopener">Hyprnote</a></span>
29+
<span class="subtitle-text">Co-founder & Co-CEO at <a href="https://hyprnote.com" target="_blank" rel="noopener" class="hyprnote-link">Hyprnote</a></span>
3030
<button class="see-more" aria-label="Expand subtitle">see more</button>
3131
</p>
3232
</header>
@@ -94,6 +94,14 @@ const navItems = [
9494
.subtitle .see-more:hover {
9595
color: #666;
9696
}
97+
.hyprnote-link {
98+
font-family: var(--font-serif);
99+
text-decoration: none;
100+
}
101+
.hyprnote-link:hover {
102+
text-decoration: underline;
103+
text-decoration-style: dotted;
104+
}
97105
.nav-container {
98106
position: relative;
99107
margin-bottom: 0.5rem;

0 commit comments

Comments
 (0)