change app name from AppCut to OpenCut

This commit is contained in:
Maze Winther
2025-06-22 22:22:08 +02:00
parent d1b3eae895
commit ead6684b08
6 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "AppCut",
title: "OpenCut",
description:
"A simple but powerful video editor that gets the job done. In your browser.",
};

View File

@ -9,14 +9,14 @@ import { HeaderBase } from "./header-base";
export function Header() {
const leftContent = (
<Link href="/" className="flex items-center gap-3">
<Image src="/logo.png" alt="AppCut Logo" width={24} height={24} />
<span className="font-medium tracking-tight">AppCut</span>
<Image src="/logo.png" alt="OpenCut Logo" width={24} height={24} />
<span className="font-medium tracking-tight">OpenCut</span>
</Link>
);
const rightContent = (
<nav className="flex items-center">
<Link href="https://github.com/mazeincoding/AppCut" target="_blank">
<Link href="https://github.com/mazeincoding/OpenCut" target="_blank">
<Button variant="ghost" className="text-sm">
GitHub
</Button>

View File

@ -149,7 +149,7 @@ export function Hero({ signupCount }: HeroProps) {
>
Currently in beta Open source on{" "}
<Link
href="https://github.com/mazeincoding/AppCut"
href="https://github.com/mazeincoding/OpenCut"
className="text-foreground underline"
>
GitHub

View File

@ -16,7 +16,7 @@ export const auth = betterAuth({
emailAndPassword: {
enabled: false,
},
appName: "AppCut",
appName: "OpenCut",
trustedOrigins: ["http://localhost:3000"],
});