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

@ -1,4 +1,4 @@
Copyright 2025 AppCut Copyright 2025 OpenCut
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,4 +1,4 @@
# AppCut # OpenCut (prev AppCut)
A free, open-source video editor for web, desktop, and mobile. A free, open-source video editor for web, desktop, and mobile.

View File

@ -13,7 +13,7 @@ const inter = Inter({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "AppCut", title: "OpenCut",
description: description:
"A simple but powerful video editor that gets the job done. In your browser.", "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() { export function Header() {
const leftContent = ( const leftContent = (
<Link href="/" className="flex items-center gap-3"> <Link href="/" className="flex items-center gap-3">
<Image src="/logo.png" alt="AppCut Logo" width={24} height={24} /> <Image src="/logo.png" alt="OpenCut Logo" width={24} height={24} />
<span className="font-medium tracking-tight">AppCut</span> <span className="font-medium tracking-tight">OpenCut</span>
</Link> </Link>
); );
const rightContent = ( const rightContent = (
<nav className="flex items-center"> <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"> <Button variant="ghost" className="text-sm">
GitHub GitHub
</Button> </Button>

View File

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

View File

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