Skip to content

Commit bd01594

Browse files
committed
feat: add meta tags for SEO and social sharing, include Open Graph image
1 parent a86d8d5 commit bd01594

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

app/root.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ import { isRouteErrorResponse, Links, Meta, Outlet, Scripts, ScrollRestoration }
33
import type { Route } from './+types/root'
44
import './app.css'
55

6+
export const meta: Route.MetaFunction = () => [
7+
{ title: 'HackUDC 2026 · Live' },
8+
{
9+
name: 'description',
10+
content: 'Live dashboard for HackUDC 2026 with schedule, challenges, mentors, Wi‑Fi info, and quick links.'
11+
},
12+
{ property: 'og:title', content: 'HackUDC 2026 · Live' },
13+
{
14+
property: 'og:description',
15+
content: 'Stay up to date during HackUDC 2026: hacking countdown, schedule, challenges, mentors, Wi‑Fi, and more.'
16+
},
17+
{ property: 'og:image', content: '/og-image.png' },
18+
{ property: 'og:type', content: 'website' }
19+
]
20+
621
export const links: Route.LinksFunction = () => [
722
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
823
{

public/og-image.png

122 KB
Loading

0 commit comments

Comments
 (0)