3 Commits

Author SHA1 Message Date
0f18b0fd5a Update src/app/page.tsx 2026-03-04 12:56:13 +00:00
388971e9ea Update src/app/layout.tsx 2026-03-04 12:56:12 +00:00
37c2b0b325 Merge version_3 into main
Merge version_3 into main
2026-03-04 12:51:40 +00:00
2 changed files with 9 additions and 8 deletions

View File

@@ -3,7 +3,8 @@ import "./styles/variables.css";
import "./globals.css"; import "./globals.css";
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Quick Creatives - Agency-Quality Ad Creatives in 48 Hours", description: "Get stunning video ads, static creatives, and full-funnel packs delivered in 48 hours. Perfect for agencies, brands, and creators."}; title: "Quick Creatives - Agency-Quality Ad Creatives in 48 Hours", description: "Get stunning video ads, static creatives, and full-funnel packs delivered in 48 hours. Perfect for agencies, brands, and creators."
};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -1384,4 +1385,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -38,7 +38,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Claim Free Creatives Now", href: "#free-offer" text: "Get My 3 Free Creatives", href: "#free-offer"
}} }}
animateOnLoad={true} animateOnLoad={true}
/> />
@@ -47,7 +47,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroCentered
title="Agency-Quality Ad Creatives. Delivered in 48 Hours." title="Agency-Quality Ad Creatives. Delivered in 48 Hours."
description="Skip the lengthy production cycles. Get stunning video ads, static creatives, and full-funnel packs faster than ever. Perfect for agencies, brands, and creators who refuse to compromise on quality." description="Get 40% faster delivery at half the traditional cost. Skip the lengthy production cycles 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."
background={{ variant: "downward-rays-animated" }} background={{ variant: "downward-rays-animated" }}
avatars={[ avatars={[
{ {
@@ -62,7 +62,7 @@ export default function LandingPage() {
]} ]}
avatarText="Trusted by 100+ agencies and brands" avatarText="Trusted by 100+ agencies and brands"
buttons={[ buttons={[
{ text: "Claim Free Creatives Now", href: "#free-offer" }, { text: "Get My 3 Free Creatives", href: "#free-offer" },
{ text: "See Our Work", href: "#features" } { text: "See Our Work", href: "#features" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -261,7 +261,7 @@ export default function LandingPage() {
background={{ variant: "downward-rays-static-grid" }} background={{ variant: "downward-rays-static-grid" }}
useInvertedBackground={true} useInvertedBackground={true}
inputPlaceholder="Enter your email address" inputPlaceholder="Enter your email address"
buttonText="Claim Free Creatives Now" buttonText="Get My 3 Free Creatives"
termsText="By claiming your free creatives, 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 creatives, you agree to our Terms and Conditions. We'll send you everything via email. No credit card required. No follow-up calls. No obligations."
ariaLabel="Free creative offer signup" ariaLabel="Free creative offer signup"
/> />
@@ -371,7 +371,7 @@ export default function LandingPage() {
background={{ variant: "downward-rays-static-grid" }} background={{ variant: "downward-rays-static-grid" }}
useInvertedBackground={true} useInvertedBackground={true}
inputPlaceholder="Enter your email address" inputPlaceholder="Enter your email address"
buttonText="Claim Your Free Creatives" buttonText="Get My 3 Free Creatives"
termsText="By claiming your free creatives, 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 creatives, you're confirming that you agree with our Terms and Conditions. 30-day money-back guarantee on paid plans. Cancel anytime, no questions asked."
ariaLabel="Contact form and creative offer signup" ariaLabel="Contact form and creative offer signup"
/> />
@@ -410,4 +410,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }