Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 3 additions & 84 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -342,15 +342,15 @@ export default function AboutPage() {
</div>

{/* Gallery Grid - Enhanced Design */}
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-2 md:gap-3">
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3 md:gap-4">
{filteredImages.map((image, index) => (
<div
key={image.id}
onClick={() => setPreviewImage(image)}
className="group relative aspect-square cursor-pointer"
>
{/* Decorative Frame */}
<div className="absolute -inset-2 bg-linear-to-br from-green-500/20 via-transparent to-blue-500/20 rounded-xl blur-sm opacity-0 group-hover:opacity-100 transition-opacity duration-500" />
<div className="absolute -inset-1 md:-inset-2 bg-linear-to-br from-green-500/20 via-transparent to-blue-500/20 rounded-xl blur-sm opacity-0 group-hover:opacity-100 transition-opacity duration-500" />

{/* Outer Border Frame */}
<div className="relative bg-card/10 backdrop-blur-sm rounded-xl p-2 border border-border group-hover:border-foreground/40 transition-all duration-300 shadow-lg shadow-black/20">
Expand Down
2 changes: 1 addition & 1 deletion src/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function ContactPage() {
<p className="mono-font text-xs text-muted mb-2">// connection.config</p>

<div className="space-y-4">
<InfoRow icon="✉" label="email" value="hello@knurdz.com" href="mailto:hello@knurdz.com" />
<InfoRow icon="✉" label="email" value="hello@knurdz.org" href="mailto:hello@knurdz.org" />
<InfoRow icon="🔗" label="linkedin" value="/company/knurdz" href="https://linkedin.com/company/knurdz" />
<InfoRow icon="🐙" label="github" value="github.com/knurdz" href="https://github.com/knurdz" />
<InfoRow icon="𝕏" label="X (Twitter)" value="@knurdz_org" href="https://x.com/knurdz_org" />
Expand Down
2 changes: 2 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ body.light {
background: var(--card);
border: 1px solid var(--border);
border-radius: 0.5rem;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}

Expand Down Expand Up @@ -247,6 +248,7 @@ body.light {
/* Navigation */
body.light nav {
background: rgba(250, 247, 242, 0.88);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}
Expand Down
Loading