Skip to content

Commit eff91e1

Browse files
committed
feat(web): simplify footer to X and GitHub profile links
Keep only 𝕏/zavxai and GitHub/zavxai in the landing footer, drop extra social links, and point profiles at the zavxai accounts.
1 parent 4afc24e commit eff91e1

2 files changed

Lines changed: 33 additions & 15 deletions

File tree

apps/web/src/app/page.module.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,6 +1002,23 @@
10021002
color: var(--accent);
10031003
}
10041004

1005+
.footerLink {
1006+
display: inline-flex;
1007+
align-items: center;
1008+
gap: 0.35rem;
1009+
}
1010+
1011+
.footerIcon {
1012+
width: 0.95rem;
1013+
height: 0.95rem;
1014+
flex-shrink: 0;
1015+
}
1016+
1017+
.footerSlash {
1018+
color: var(--border);
1019+
user-select: none;
1020+
}
1021+
10051022
.footerDot {
10061023
color: var(--border);
10071024
}

apps/web/src/app/page.tsx

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ import Image from 'next/image'
66
import styles from './page.module.css'
77
import { API_BASE as API_URL, useAuth } from '@/src/lib/auth-context'
88

9-
const PORTFOLIO_URL = 'https://johnvesslyalti.xyz'
10-
const GITHUB_PROFILE_URL = 'https://github.com/johnvesslyalti'
11-
const GITHUB_REPO_URL = 'https://github.com/johnvesslyalti/inferr'
9+
const GITHUB_PROFILE_URL = 'https://github.com/zavxai'
10+
const GITHUB_REPO_URL = 'https://github.com/zavxai/inferr'
1211
const X_URL = 'https://x.com/zavxai'
13-
const LINKEDIN_URL = 'https://www.linkedin.com/in/johnvesslyalti-ai-engineer'
14-
const EMAIL_URL = 'mailto:altijohnvessly@gmail.com'
1512

1613
const features = [
1714
{
@@ -374,17 +371,21 @@ export default function Home() {
374371
{/* Footer */}
375372
<footer className={styles.footer}>
376373
<div className={styles.footerContent}>
377-
<span>Built by <a href={X_URL} target="_blank" rel="noopener noreferrer">@zavxai</a></span>
378-
<span className={styles.footerDot}>·</span>
379-
<a href={PORTFOLIO_URL} target="_blank" rel="noopener noreferrer">Portfolio</a>
380-
<span className={styles.footerDot}>·</span>
381-
<a href={GITHUB_PROFILE_URL} target="_blank" rel="noopener noreferrer">GitHub</a>
382-
<span className={styles.footerDot}>·</span>
383-
<a href={LINKEDIN_URL} target="_blank" rel="noopener noreferrer">LinkedIn</a>
384-
<span className={styles.footerDot}>·</span>
385-
<a href={EMAIL_URL} target="_blank" rel="noopener noreferrer">Email</a>
374+
<a href={X_URL} target="_blank" rel="noopener noreferrer" className={styles.footerLink}>
375+
<svg className={styles.footerIcon} viewBox="0 0 24 24" aria-hidden="true" fill="currentColor">
376+
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.744l7.727-8.835L1.254 2.25H8.08l4.253 5.622L18.244 2.25zm-1.161 17.52h1.833L7.084 4.126H5.117L17.083 19.77z" />
377+
</svg>
378+
<span className={styles.footerSlash}>/</span>
379+
<span>zavxai</span>
380+
</a>
386381
<span className={styles.footerDot}>·</span>
387-
<a href={GITHUB_REPO_URL} target="_blank" rel="noopener noreferrer">Source Code</a>
382+
<a href={GITHUB_PROFILE_URL} target="_blank" rel="noopener noreferrer" className={styles.footerLink}>
383+
<svg className={styles.footerIcon} viewBox="0 0 24 24" aria-hidden="true" fill="currentColor">
384+
<path d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0 1 12 6.844a9.59 9.59 0 0 1 2.504.337c1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.02 10.02 0 0 0 22 12.017C22 6.484 17.522 2 12 2z" />
385+
</svg>
386+
<span className={styles.footerSlash}>/</span>
387+
<span>zavxai</span>
388+
</a>
388389
</div>
389390
</footer>
390391

0 commit comments

Comments
 (0)