11 Commits

Author SHA1 Message Date
d604d66be9 Merge version_3 into main
Merge version_3 into main
2026-03-08 00:14:04 +00:00
7ac4376c51 Update src/app/page.tsx 2026-03-08 00:14:00 +00:00
0658dbc4d5 Update src/app/layout.tsx 2026-03-08 00:14:00 +00:00
fde3cd5611 Merge version_2 into main
Merge version_2 into main
2026-03-08 00:12:12 +00:00
c8ef3fe837 Update src/app/page.tsx 2026-03-08 00:12:08 +00:00
af66909395 Update src/app/layout.tsx 2026-03-08 00:12:08 +00:00
713384000e Merge version_1 into main
Merge version_1 into main
2026-03-07 23:50:10 +00:00
964635895f Merge version_1 into main
Merge version_1 into main
2026-03-07 23:49:30 +00:00
65d07bb19f Merge version_1 into main
Merge version_1 into main
2026-03-07 23:48:07 +00:00
66fd311d0f Merge version_1 into main
Merge version_1 into main
2026-03-07 23:46:32 +00:00
4957b8b2ef Merge version_1 into main
Merge version_1 into main
2026-03-07 23:45:48 +00:00
2 changed files with 10 additions and 7 deletions

View File

@@ -1,8 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import "./styles/globals.css"; import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Syncora - AI-Powered Content Creation Platform", description: "Transform your content creation with AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook."}; title: "Syncora - AI-Powered Content Creation", description: "Generate AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook."};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -11,7 +14,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body>{children} <body className={inter.className}>{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1381,4 +1384,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -61,7 +61,7 @@ export default function Home() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroCentered
title="Transform Your Content Creation with AI" title="Create months of content in hours"
description="Generate AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook. One platform. All your platforms. Unlimited possibilities." description="Generate AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook. One platform. All your platforms. Unlimited possibilities."
background={{ variant: "animated-grid" }} background={{ variant: "animated-grid" }}
avatars={[ avatars={[
@@ -134,7 +134,7 @@ export default function Home() {
plans={[ plans={[
{ {
id: "free", badge: "Free Trial", badgeIcon: Gift, id: "free", badge: "Free Trial", badgeIcon: Gift,
price: "$0", subtitle: "Perfect for getting started", buttons: [{ text: "Get Started", href: "/signup" }], price: "$0", subtitle: "Free forever — 1 script & 1 thumbnail daily", buttons: [{ text: "Get Started", href: "/signup" }],
features: [ features: [
"1 AI-generated script per day", "1 animated thumbnail per day", "Access to trending ideas", "Basic image upload (up to 5MB)", "YouTube, TikTok, Instagram, Facebook support", "Mobile app access", "Community support" "1 AI-generated script per day", "1 animated thumbnail per day", "Access to trending ideas", "Basic image upload (up to 5MB)", "YouTube, TikTok, Instagram, Facebook support", "Mobile app access", "Community support"
] ]
@@ -279,4 +279,4 @@ export default function Home() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }