Skip to content

Commit 10027e6

Browse files
added new socials and contacts, and attributes
1 parent 06b0eee commit 10027e6

3 files changed

Lines changed: 22 additions & 7 deletions

File tree

site/config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ export const SITE: SiteConfig = {
5959
base: '/',
6060
website: 'https://afoolishman.com',
6161
social: {
62-
x: 'https://x.com/yourhandle',
63-
github: 'https://github.com/the-coder-kishor',
64-
telegram: 'https://t.me/yourhandle',
65-
facebook: 'https://facebook.com/yourhandle',
62+
github: 'https://github.com/The-Coder-Kishor/',
63+
linkedin: 'https://www.linkedin.com/in/afoolishman/',
64+
instagram: 'https://www.instagram.com/a.foolishman',
65+
email: 'mailto:info@afoolishman.com',
6666
},
6767
googleAnalyticsId: '', // Example: 'G-XXXXXXXXXX'
6868
homeHeroDescription:

src/components/Footer.astro

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ import { SITE } from '@/config';
44

55
<footer class="py-12 mt-24 sm:mt-32 lg:mt-48 border-t border-border">
66
<div class="flex flex-col md:flex-row justify-between items-center gap-8 sm:gap-6">
7-
<div class="text-xs font-bold text-muted-foreground uppercase tracking-[0.2em] opacity-60">
8-
&copy; {new Date().getFullYear()}
9-
{SITE.author}
7+
<div class="flex flex-col gap-2">
8+
<div class="text-xs font-bold text-muted-foreground uppercase tracking-[0.2em] opacity-60">
9+
&copy; {new Date().getFullYear()}
10+
{SITE.author}
11+
</div>
12+
<div class="text-[10px] text-muted-foreground/40 font-medium uppercase tracking-widest">
13+
Built using: <a
14+
href="https://github.com/alec-c4/spaceship"
15+
target="_blank"
16+
rel="noopener noreferrer"
17+
class="hover:text-primary transition-colors underline decoration-primary/30"
18+
>Spaceship Astro template</a
19+
>
20+
</div>
1021
</div>
1122

1223
<div class="flex flex-wrap justify-center gap-6 sm:gap-8">

src/pages/about.astro

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ const socialIcons = {
2424
'<rect width="20" height="16" x="2" y="4" rx="2"/><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"/>',
2525
website:
2626
'<circle cx="12" cy="12" r="10"/><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"/><path d="M2 12h20"/>',
27+
instagram:
28+
'<rect x="2" y="2" width="20" height="20" rx="5" ry="5"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"/>',
29+
linkedin:
30+
'<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6zM2 9h4v12H2z"/><circle cx="4" cy="4" r="2"/>',
2731
};
2832
2933
// Get icon for social platform

0 commit comments

Comments
 (0)