fix(landing): Fix community links & meta tag for SEO (#57)

This commit is contained in:
Hafid Nur
2025-10-06 08:57:13 +07:00
committed by GitHub
parent a281f279f8
commit e067450fcb
4 changed files with 36 additions and 11 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

@@ -24,32 +24,37 @@ export default function Footer() {
</p> </p>
<div className="flex space-x-4"> <div className="flex space-x-4">
<Link <Link
href="#" href="https://fb.com/groups/programmerhandal"
className="text-muted-foreground hover:text-foreground" className="text-muted-foreground hover:text-foreground"
target="_blank"
> >
<FaFacebook className="size-6" /> <FaFacebook className="size-6" />
</Link> </Link>
<Link <Link
href="#" href="https://discord.gg/imphnen"
className="text-muted-foreground hover:text-foreground" className="text-muted-foreground hover:text-foreground"
target="_blank"
> >
<FaDiscord className="size-6" /> <FaDiscord className="size-6" />
</Link> </Link>
<Link <Link
href="#" href="https://www.instagram.com/imphnen.dev"
className="text-muted-foreground hover:text-foreground" className="text-muted-foreground hover:text-foreground"
target="_blank"
> >
<FaInstagram className="size-6" /> <FaInstagram className="size-6" />
</Link> </Link>
<Link <Link
href="#" href="https://www.tiktok.com/@imphnen"
className="text-muted-foreground hover:text-foreground" className="text-muted-foreground hover:text-foreground"
target="_blank"
> >
<FaTiktok className="size-6" /> <FaTiktok className="size-6" />
</Link> </Link>
<Link <Link
href="#" href="https://www.linkedin.com/company/imphnen"
className="text-muted-foreground hover:text-foreground" className="text-muted-foreground hover:text-foreground"
target="_blank"
> >
<FaLinkedinIn className="size-6" /> <FaLinkedinIn className="size-6" />
</Link> </Link>
@@ -78,6 +83,7 @@ export default function Footer() {
<Link <Link
href={link} href={link}
className="text-sm text-muted-foreground hover:text-foreground" className="text-sm text-muted-foreground hover:text-foreground"
target="_blank"
> >
{name} {name}
</Link> </Link>
+20 -1
View File
@@ -6,8 +6,27 @@ import { Providers } from './_components/providers';
import { Toaster } from './_components/toaster'; import { Toaster } from './_components/toaster';
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'IMPHNEN - Ingin Menjadi Programmer Handal?', title: 'IMPHNEN - Ingin Menjadi Programmer Handal Namun Enggan Ngoding',
description: 'Komunitas belajar programming untuk semua level', description: 'Komunitas belajar programming untuk semua level',
openGraph: {
title: 'IMPHNEN - Ingin Menjadi Programmer Handal Namun Enggan Ngoding',
description: 'Komunitas belajar programming untuk semua level',
url: 'https://imphnen.dev',
images: [
{
url: 'https://imphnen.dev/imphnen-group-cover.webp',
alt: 'IMPHNEN - Ingin Menjadi Programmer Handal Namun Enggan Ngoding',
width: 2550,
height: 945,
},
],
},
twitter: {
card: 'summary_large_image',
title: 'IMPHNEN - Ingin Menjadi Programmer Handal Namun Enggan Ngoding',
description: 'Komunitas belajar programming untuk semua level',
images: ['https://imphnen.dev/imphnen-group-cover.webp'],
},
}; };
export default function RootLayout({ export default function RootLayout({
+5 -5
View File
@@ -4,34 +4,34 @@
"icon": "FaFacebook", "icon": "FaFacebook",
"color": "#1877F2", "color": "#1877F2",
"description": "Join discussions and share knowledge", "description": "Join discussions and share knowledge",
"link": "#" "link": "https://fb.com/groups/programmerhandal"
}, },
{ {
"name": "Discord", "name": "Discord",
"icon": "FaDiscord", "icon": "FaDiscord",
"color": "#5865F2", "color": "#5865F2",
"description": "Real-time collaboration chat", "description": "Real-time collaboration chat",
"link": "#" "link": "https://discord.gg/imphnen"
}, },
{ {
"name": "Instagram", "name": "Instagram",
"icon": "FaInstagram", "icon": "FaInstagram",
"color": "#E4405F", "color": "#E4405F",
"description": "Daily coding tips & showcases", "description": "Daily coding tips & showcases",
"link": "#" "link": "https://www.instagram.com/imphnen.dev"
}, },
{ {
"name": "TikTok", "name": "TikTok",
"icon": "FaTiktok", "icon": "FaTiktok",
"color": "#000000", "color": "#000000",
"description": "Short coding tutorials", "description": "Short coding tutorials",
"link": "#" "link": "https://www.tiktok.com/@imphnen"
}, },
{ {
"name": "LinkedIn", "name": "LinkedIn",
"icon": "FaLinkedin", "icon": "FaLinkedin",
"color": "#0A66C2", "color": "#0A66C2",
"description": "Professional networking", "description": "Professional networking",
"link": "#" "link": "https://www.linkedin.com/company/imphnen"
} }
] ]