6 Commits

Author SHA1 Message Date
d8697d66ea Remove watermark 2026-03-14 14:59:53 +00:00
ff9c4ad8ba Update src/app/page.tsx 2026-03-14 14:58:00 +00:00
08fcc955bc Merge version_2 into main
Merge version_2 into main
2026-03-12 14:01:34 +00:00
9add3cbbd6 Update src/app/page.tsx 2026-03-12 14:01:30 +00:00
b7bbf2afd9 Merge version_1 into main
Merge version_1 into main
2026-03-11 20:21:39 +00:00
adbb2ea2d8 Merge version_1 into main
Merge version_1 into main
2026-03-11 20:21:16 +00:00
2 changed files with 4 additions and 7 deletions

View File

@@ -3,7 +3,6 @@ import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
@@ -26,7 +25,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -73,8 +73,7 @@ export default function LandingPage() {
]}
carouselPosition="right"
buttons={[
{ text: "Get Your First Ad Creatives", href: "pricing" },
{ text: "See Pricing", href: "pricing" }
{ text: "Get Your First Ad Creatives", href: "pricing" }
]}
buttonAnimation="slide-up"
/>
@@ -203,8 +202,7 @@ export default function LandingPage() {
columns={[
{
items: [
{ label: "hello@aditly.com", href: "mailto:hello@aditly.com" },
{ label: "© 2025 Aditly", href: "#" }
{ label: "hello@aditly.com", href: "mailto:hello@aditly.com" }
]
}
]}
@@ -212,4 +210,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}