Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

metadata #25

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Binary file added src/app/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 31 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,38 @@ import Script from 'next/script';
import '@/styles/index.scss';

export const metadata: Metadata = {
title: 'Hack the 6ix',
title: 'Hack the 6ix | Torontos Largest Summer Hackathon',
description:
'Hack the 6ix is the largest summer student-run, not-for-profit hackathon now in its ninth iteration, based in Toronto. Join hundreds of students from diverse backgrounds, disciplines, and skill levels to work together on projects that have real-world impact.',
'Hack the 6ix is the largest summer student-run, not-for-profit hackathon now in its 10th iteration, based in Toronto. Join hundreds of students from diverse backgrounds, disciplines, and skill levels to work together on projects that have real-world impact.',
keywords: ['hackathon', 'toronto', 'students', 'tech', 'innovation'],
openGraph: {
title: 'Hack the 6ix | Torontos Largest Summer Hackathon',
description:
'Hack the 6ix is the largest summer student-run, not-for-profit hackathon now in its 10th iteration, based in Toronto. Join hundreds of students from diverse backgrounds, disciplines, and skill levels to work together on projects that have real-world impact.',
url: 'https://hackthe6ix.com',
siteName: 'Hack the 6ix',
images: [
{
url: './banner.png',
width: 1200,
height: 630,
alt: 'Hack the 6ix banner showcasing diverse students collaborating on innovative projects.',
},
],
locale: 'en_CA',
type: 'website',
},
twitter: {
card: 'summary_large_image',
title: 'Hack the 6ix | Torontos Largest Summer Hackathon',
description:
'Hack the 6ix is the largest summer student-run, not-for-profit hackathon now in its 10th iteration, based in Toronto. Join hundreds of students from diverse backgrounds, disciplines, and skill levels to work together on projects that have real-world impact.',
images: ['./banner.png'],
creator: '@hackthe6ix',
},
icons: {
icon: './icon.png',
},
};

export default function RootLayout({
Expand Down