4 Commits

Author SHA1 Message Date
7105de1607 Update src/app/page.tsx 2026-03-05 05:01:12 +00:00
f09f245b63 Update src/app/layout.tsx 2026-03-05 05:01:12 +00:00
d77c1249bb Merge version_9 into main
Merge version_9 into main
2026-03-05 01:42:55 +00:00
6e76762078 Merge version_9 into main
Merge version_9 into main
2026-03-05 01:41:21 +00:00
2 changed files with 12 additions and 14 deletions

View File

@@ -1,12 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Efficient Ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get agency-quality ad creatives delivered in 48 hours at half the cost. Perfect for agencies, brands, and creators."
};
title: "Efficient Ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get professional ad creatives delivered in 48 hours at half the traditional cost. 40% faster, 50% cheaper. Perfect for agencies, brands, and creators."};
export default function RootLayout({
children,
@@ -15,7 +11,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1385,4 +1383,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCentered
title="Agency-Quality Ad Creatives. Delivered in 48 Hours."
description="Get 40% faster delivery at half the traditional cost. Launch winning campaigns 3x faster and get stunning video ads, static creatives, and full-funnel packs in 48 hours. Perfect for agencies, brands, and creators who refuse to compromise on quality."
description="40% faster delivery and 50% cheaper than traditional agencies—get stunning video ads, static creatives, and full-funnel packs in 48 hours. Launch winning campaigns 3x faster. Perfect for agencies, brands, and creators who refuse to compromise on quality."
background={{ variant: "downward-rays-animated" }}
avatars={[
{
@@ -290,7 +290,7 @@ export default function LandingPage() {
{ text: "Get Started", href: "#free-offer" }
],
features: [
"4 ad projects per month", "Video ads (up to 3 variations each)", "Static creatives (10+ variations)", "Full-funnel packs", "48-hour turnaround", "Brand consistency maintained", "Email support"
"4 ad projects per month", "Video ads (up to 3 variations each)", "Static creatives (10+ variations)", "Full-funnel packs", "48-hour turnaround", "Brand consistency maintained", "Email support"
]
},
{
@@ -323,13 +323,13 @@ export default function LandingPage() {
<ContactCenter
tag="Free Trial - Risk Free"
title="See Results in 48 Hours"
description="Try our service risk-free with no credit card required. Get agency-quality ad creatives delivered in 48 hours. Includes 30-day money-back guarantee on paid plans. No follow-up sales calls. No obligations."
description="Try our service risk-free. No credit card required upfront. Get agency-quality ad creatives delivered in 48 hours. Plus, enjoy a 30-day money-back guarantee on paid plans. No follow-up sales calls. No obligations."
tagIcon={Sparkles}
background={{ variant: "downward-rays-static-grid" }}
useInvertedBackground={true}
inputPlaceholder="Enter your email address"
buttonText="Claim Your 3 Free Ads Now"
termsText="By claiming your free ads, you agree to our Terms and Conditions. We'll send you everything via email. No credit card required. No follow-up calls. No obligations."
termsText="By claiming your free ads, you agree to our Terms and Conditions. No credit card required. 30-day money-back guarantee on paid plans. No follow-up calls. No obligations."
ariaLabel="Free ad offer signup"
/>
</div>
@@ -433,13 +433,13 @@ export default function LandingPage() {
<ContactCenter
tag="Get Started"
title="Ready to Scale Your Creative Output?"
description="Join 100+ brands and agencies already transforming their ad production with Efficient Ads. Start with your free 3 ads today. 30-day money-back guarantee. Cancel anytime."
description="Join 100+ brands and agencies already transforming their ad production with Efficient Ads. Start with your free 3 ads today. 30-day money-back guarantee. No credit card required. Cancel anytime."
tagIcon={Mail}
background={{ variant: "downward-rays-static-grid" }}
useInvertedBackground={true}
inputPlaceholder="Enter your email address"
buttonText="Claim Your 3 Free Ads Now"
termsText="By claiming your free ads, you're confirming that you agree with our Terms and Conditions. 30-day money-back guarantee on paid plans. Cancel anytime, no questions asked."
termsText="By claiming your free ads, you're confirming that you agree with our Terms and Conditions. No credit card required. 30-day money-back guarantee on paid plans. Cancel anytime, no questions asked."
ariaLabel="Contact form and ad offer signup"
/>
</div>
@@ -477,4 +477,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}