Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d604d66be9 | |||
| 7ac4376c51 | |||
| 0658dbc4d5 | |||
| fde3cd5611 | |||
| c8ef3fe837 | |||
| af66909395 | |||
| 713384000e | |||
| 964635895f | |||
| 65d07bb19f | |||
| 66fd311d0f | |||
| 4957b8b2ef |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user