7 Commits

Author SHA1 Message Date
iza
1d13e9a67f Update README.md 2025-06-24 22:40:19 +03:00
iza
9b29122a2c Merge pull request #58 from creotove/main
Fix: [BUG] Backend not running #56.
2025-06-24 22:34:58 +03:00
iza
dcbae4554c Merge pull request #60 from karansingh21202/fix/hero-section-spacing
fix(hero): improve spacing and prevent footer overlap with email section in landing page
2025-06-24 22:33:37 +03:00
33916d4e91 chore: update @types/node to version 22.15.33 and add project name in package.json 2025-06-24 21:29:15 +02:00
595f4c5f88 refactor: update header component to replace 'Start editing' button with 'GitHub' 2025-06-24 20:58:37 +02:00
77560dc5aa fix(hero): improve spacing and prevent footer overlap in hero section (#51) 2025-06-25 00:08:13 +05:30
e8a22d99cb Fix: [BUG] Backend not running #56. 2025-06-24 22:32:37 +05:30
6 changed files with 10 additions and 13 deletions

View File

@ -20,6 +20,7 @@
- Multi-track support
- Real-time preview
- No watermarks or subscriptions
- Analytics provided by [Databuddy](https://www.databuddy.cc?utm_source=opencut), 100% Anonymized & Non-invasive.
## Project Structure

View File

@ -42,13 +42,8 @@ export function Header() {
</Button>
</Link>
<Link href="https://github.com/OpenCut-app/OpenCut" target="_blank">
<Button variant="text" className="text-sm">
GitHub
</Button>
</Link>
<Link href={session ? "/editor" : "/auth/login"}>
<Button size="sm" className="text-sm ml-4">
Start editing
GitHub
<ArrowRight className="h-4 w-4" />
</Button>
</Link>

View File

@ -82,12 +82,12 @@ export function Hero({ signupCount }: HeroProps) {
};
return (
<div className="relative min-h-[calc(100vh-4rem)] flex flex-col items-center justify-center text-center px-4">
<div className="min-h-[calc(100vh-4rem)] flex flex-col justify-between items-center text-center px-4">
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 1 }}
className="max-w-3xl mx-auto"
className="max-w-3xl mx-auto w-full flex-1 flex flex-col justify-center"
>
<motion.div
initial={{ opacity: 0, y: 20 }}
@ -148,7 +148,7 @@ export function Hero({ signupCount }: HeroProps) {
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.8, duration: 0.6 }}
className="mt-6 inline-flex items-center gap-2 bg-muted/30 px-4 py-2 rounded-full text-sm text-muted-foreground"
className="mt-8 inline-flex items-center gap-2 bg-muted/30 px-4 py-2 rounded-full text-sm text-muted-foreground justify-center"
>
<div className="w-2 h-2 bg-green-500 rounded-full animate-pulse" />
<span>{signupCount.toLocaleString()} people already joined</span>
@ -157,7 +157,7 @@ export function Hero({ signupCount }: HeroProps) {
</motion.div>
<motion.div
className="absolute bottom-12 left-0 right-0 text-center text-sm text-muted-foreground/60"
className="mb-8 text-center text-sm text-muted-foreground/60"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ delay: 0.8, duration: 0.8 }}

View File

@ -430,7 +430,7 @@
"@types/d3-timer": ["@types/d3-timer@3.0.2", "", {}, "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw=="],
"@types/node": ["@types/node@22.15.32", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-3jigKqgSjsH6gYZv2nEsqdXfZqIFGAV36XYYjf9KGZ3PSG+IhLecqPnI310RvjutyMwifE2hhhNEklOUrvx/wA=="],
"@types/node": ["@types/node@22.15.33", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-wzoocdnnpSxZ+6CjW4ADCK1jVmd1S/J3ArNWfn8FDDQtRm8dkDg7TA+mvek2wNrfCgwuZxqEOiB9B1XCJ6+dbw=="],
"@types/pg": ["@types/pg@8.15.4", "", { "dependencies": { "@types/node": "*", "pg-protocol": "*", "pg-types": "^2.2.0" } }, "sha512-I6UNVBAoYbvuWkkU3oosC8yxqH21f4/Jc4DK71JLG3dT2mdlGe1z+ep/LQGXaKaOgcvUrsQoPRqfgtMcvZiJhg=="],

View File

@ -11,7 +11,7 @@ services:
ports:
- "5432:5432"
healthcheck:
test: ["CMD", "pg_isready -U opencut"]
test: ["CMD-SHELL", "pg_isready -U opencut"]
interval: 30s
timeout: 10s
retries: 5

View File

@ -1,4 +1,5 @@
{
"name": "opencut",
"packageManager": "bun@1.2.17",
"devDependencies": {
"turbo": "^2.5.4"
@ -17,4 +18,4 @@
"dependencies": {
"next": "^15.3.4"
}
}
}