Skip to content

Commit

Permalink
Move Open Graph image
Browse files Browse the repository at this point in the history
  • Loading branch information
gruz0 committed Nov 20, 2024
1 parent c66d81c commit 92109c4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
File renamed without changes
12 changes: 12 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import PlausibleProvider from 'next-plausible'
import { ThemeProvider } from 'next-themes'
import React from 'react'
import { env } from '@/lib/env'
import OpenGraphImage from '../../public/opengraph-image.png'
import type { Metadata } from 'next'
import '@/app/globals.css'

Expand All @@ -10,6 +11,17 @@ export const metadata: Metadata = {
title: 'Validate Your Product or Startup Idea Fast | CheckMVP',
description:
'Stop wasting time on product ideas without a market. CheckMVP helps you validate your concept in just a minute.',
openGraph: {
images: [
{
url: OpenGraphImage.src,
alt: 'Validate Your Product or Startup Idea Fast with CheckMVP',
width: OpenGraphImage.width,
height: OpenGraphImage.height,
type: 'image/png',
},
],
},
}

export default function RootLayout({
Expand Down
1 change: 0 additions & 1 deletion src/app/opengraph-image.alt.txt

This file was deleted.

0 comments on commit 92109c4

Please sign in to comment.