diff --git a/apps/web/components/ui/AuthContainer.tsx b/apps/web/components/ui/AuthContainer.tsx index 241f77946a..75d02d7767 100644 --- a/apps/web/components/ui/AuthContainer.tsx +++ b/apps/web/components/ui/AuthContainer.tsx @@ -1,11 +1,12 @@ import classNames from "classnames"; -import React from "react"; -import { APP_NAME, LOGO, COMPANY_NAME, CalComVersion } from "@calcom/lib/constants"; +import { APP_NAME, LOGO } from "@calcom/lib/constants"; import Loader from "@components/Loader"; import { HeadSeo } from "@components/seo/head-seo"; +import Credits from "../../../../packages/ui/v2/core/Credits"; + interface Props { title: string; description: string; @@ -38,9 +39,7 @@ export default function AuthContainer(props: React.PropsWithChildren) {
{props.footerText} - - © {new Date().getFullYear()} {COMPANY_NAME} {CalComVersion} - +
diff --git a/apps/web/pages/_app.tsx b/apps/web/pages/_app.tsx index b65b54961f..f3d7a12b84 100644 --- a/apps/web/pages/_app.tsx +++ b/apps/web/pages/_app.tsx @@ -5,7 +5,6 @@ import superjson from "superjson"; import "@calcom/embed-core/src/embed-iframe"; import LicenseRequired from "@calcom/features/ee/common/components/LicenseRequired"; -import { CalComVersion } from "@calcom/lib/constants"; import { httpBatchLink } from "@calcom/trpc/client/links/httpBatchLink"; import { httpLink } from "@calcom/trpc/client/links/httpLink"; import { loggerLink } from "@calcom/trpc/client/links/loggerLink"; @@ -43,10 +42,6 @@ function MyApp(props: AppProps) { -