From 15c57239f42a8e48778ee52a2b7c00d0cdf0acd1 Mon Sep 17 00:00:00 2001 From: Vagarth Date: Mon, 21 Jul 2025 07:01:31 +0530 Subject: [PATCH 1/2] refactor: replace GitHub icon with FontAwesome version in footer --- apps/web/src/components/footer.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/footer.tsx b/apps/web/src/components/footer.tsx index 5b7f2303..a7aa724f 100644 --- a/apps/web/src/components/footer.tsx +++ b/apps/web/src/components/footer.tsx @@ -3,7 +3,8 @@ import { motion } from "motion/react"; import Link from "next/link"; import { useEffect, useState } from "react"; -import { RiDiscordFill, RiGithubLine, RiTwitterXLine } from "react-icons/ri"; +import { RiDiscordFill, RiTwitterXLine } from "react-icons/ri"; +import { FaGithub } from "react-icons/fa6"; import { getStars } from "@/lib/fetch-github-stars"; import Image from "next/image"; @@ -49,7 +50,7 @@ export function Footer() { target="_blank" rel="noopener noreferrer" > - + Date: Mon, 21 Jul 2025 14:27:27 +0200 Subject: [PATCH 2/2] fix: switch to alpha --- apps/web/src/components/landing/hero.tsx | 2 +- apps/web/src/components/onboarding.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/components/landing/hero.tsx b/apps/web/src/components/landing/hero.tsx index b905bbde..0da22b18 100644 --- a/apps/web/src/components/landing/hero.tsx +++ b/apps/web/src/components/landing/hero.tsx @@ -70,7 +70,7 @@ export function Hero() { size="lg" className="px-6 h-11 text-base bg-foreground" > - Try early beta + Try early alpha diff --git a/apps/web/src/components/onboarding.tsx b/apps/web/src/components/onboarding.tsx index 80b5f99c..87cd0115 100644 --- a/apps/web/src/components/onboarding.tsx +++ b/apps/web/src/components/onboarding.tsx @@ -32,7 +32,7 @@ export function Onboarding() { return (
- + <Title title="Welcome to OpenCut alpha! 🎉" /> <Description description="You're among the first to try OpenCut - the fully open source CapCut alternative." /> </div> <NextButton onClick={handleNext}>Next</NextButton> @@ -42,7 +42,7 @@ export function Onboarding() { return ( <div className="space-y-5"> <div className="space-y-3"> - <Title title="⚠️ This is a super early beta!" /> + <Title title="⚠️ This is a super early alpha!" /> <Description description="OpenCut started just one month ago. There's still a ton of things to do to make this editor amazing." /> <Description description="If you're curious, check out our roadmap [here](https://opencut.app/roadmap)" /> </div>