Skip to content

Commit

Permalink
og tags
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevyashsaini authored Jul 30, 2024
1 parent 75c5fb1 commit 105d22e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "./globals.css";
import { Analytics } from "@vercel/analytics/react"
import { SpeedInsights } from "@vercel/speed-insights/next"
import { cn } from "@/lib/utils"
import Head from 'next/head';

const inter = Inter({ subsets: ["latin"] });

Expand Down Expand Up @@ -33,13 +34,19 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<head>
<Head>
<meta charSet="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
</head>
<meta property="og:title" content="Coding Club IIITV" />
<meta property="og:site_name" content="IIITVCC" />
<meta property="og:url" content="https://iiitvcc.vercel.app" />
<meta property="og:description" content="IIITVCC Community Website | Workshops | Mentorship | Community" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://iiitvcc.vercel.app/LinkPreview.png" />
</Head>
<body className={cn(inter.className, 'antialiased' , fontHeading.variable, fontBody.variable)}>
<script
type="module"
Expand Down

1 comment on commit 105d22e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for iiitvcc ready!

✅ Preview
https://iiitvcc-nj8mp6113-iiitv-coding-clubs-projects.vercel.app

Built with commit 105d22e.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.