Skip to content
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 public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import ScrollToTop from "@/components/ScrollToTop";
import BrandLogo from "@/components/BrandLogo";

export const metadata: Metadata = {
metadataBase: new URL("https://reframe-lilac.vercel.app"),
title: "Reframe — Resize, trim, and export videos in your browser",
description: "Free, open-source video editor that runs entirely in your browser. No login, no uploads, no ads. Resize for any platform, trim, rotate, adjust speed, and export.",
keywords: [
Expand All @@ -27,13 +28,24 @@ export const metadata: Metadata = {
description:
"Free, open-source browser-based video editor. Resize, trim, rotate, and export videos directly in your browser.",
type: "website",

images: [
{
url: "/og-image.png",
width: 1200,
height: 630,
alt: "Reframe Open Graph Image",
},
],
},

twitter: {
card: "summary_large_image",
title: "Reframe",
description:
"Free, open-source browser-based video editor. Resize, trim, rotate, and export videos directly in your browser.",

images: ["/og-image.png"],
},
icons: {
icon: [{ url: "/favicon.svg", type: "image/svg+xml" }],
Expand Down