Merge version_1 into main #1
@@ -100,27 +100,27 @@ export default function AboutPage() {
|
||||
},
|
||||
{
|
||||
id: "about-carousel-2",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/ai-system-scanning-digital-map-and-busin-1773419234320-8f17e9be.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/ai-system-scanning-digital-map-and-busin-1773419234320-8f17e9be.png?_wi=2",
|
||||
imageAlt: "AI technology",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-3",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/animated-ai-voice-agent-interface-with-w-1773419234017-b1c9ff9c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/animated-ai-voice-agent-interface-with-w-1773419234017-b1c9ff9c.png?_wi=2",
|
||||
imageAlt: "Innovation",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-4",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-language-flags-and-text-samples-1773419233881-2eada176.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-language-flags-and-text-samples-1773419233881-2eada176.png?_wi=2",
|
||||
imageAlt: "Global reach",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-5",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/recording-icon-with-waveforms-being-tran-1773419233082-0629a952.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/recording-icon-with-waveforms-being-tran-1773419233082-0629a952.png?_wi=2",
|
||||
imageAlt: "Analytics",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-6",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-software-icons-crm-email-calend-1773419233709-67bdbedb.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-software-icons-crm-email-calend-1773419233709-67bdbedb.png?_wi=2",
|
||||
imageAlt: "Integration",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,29 +1,67 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AI Client Finder | Sales Automation Platform",
|
||||
description: "Intelligent AI calling agents discover businesses without websites, make natural persuasive calls, and convert prospects into clients. Start free today.",
|
||||
keywords: "AI sales automation, business development automation, AI calling agent, lead generation, sales outreach, conversational AI, business automation platform",
|
||||
metadataBase: new URL("https://aiclientfinder.com"),
|
||||
alternates: {
|
||||
canonical: "https://aiclientfinder.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "AI Client Finder | Sales Automation Platform",
|
||||
description: "Intelligent AI calling agents that discover, call, and convert prospects into clients 24/7.",
|
||||
url: "https://aiclientfinder.com",
|
||||
siteName: "AI Client Finder",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://aiclientfinder.com/og-image.jpg",
|
||||
alt: "AI Client Finder - Sales Automation Platform",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "AI Client Finder | Sales Automation Platform",
|
||||
description: "Intelligent AI calling agents that discover and convert prospects into clients 24/7.",
|
||||
images: ["https://aiclientfinder.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +70,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +84,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -173,7 +173,7 @@ export default function HomePage() {
|
||||
"Automatically scans business directories and map listings to identify companies without websites",
|
||||
"Collects verified contact information and business details for instant targeting",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/ai-system-scanning-digital-map-and-busin-1773419234320-8f17e9be.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/ai-system-scanning-digital-map-and-busin-1773419234320-8f17e9be.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "feature-2",
|
||||
@@ -182,7 +182,7 @@ export default function HomePage() {
|
||||
"Professional AI voice agent makes natural, persuasive calls to prospects",
|
||||
"Adapts conversation based on real-time responses for optimal engagement",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/animated-ai-voice-agent-interface-with-w-1773419234017-b1c9ff9c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/animated-ai-voice-agent-interface-with-w-1773419234017-b1c9ff9c.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "feature-3",
|
||||
@@ -200,7 +200,7 @@ export default function HomePage() {
|
||||
"Automatically detects client language and communicates fluently",
|
||||
"Supports 50+ languages for global business outreach",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-language-flags-and-text-samples-1773419233881-2eada176.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-language-flags-and-text-samples-1773419233881-2eada176.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "feature-5",
|
||||
@@ -209,7 +209,7 @@ export default function HomePage() {
|
||||
"Every call automatically recorded and transcribed to text",
|
||||
"Intelligent summaries sent to your email with key insights and follow-up actions",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/recording-icon-with-waveforms-being-tran-1773419233082-0629a952.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/recording-icon-with-waveforms-being-tran-1773419233082-0629a952.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "feature-6",
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
"Connects with your CRM, email, and business tools automatically",
|
||||
"Real-time data sync ensures all contact information stays current",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-software-icons-crm-email-calend-1773419233709-67bdbedb.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtkCBsyY5ISKCaxBVkeuHQf6O1/multiple-software-icons-crm-email-calend-1773419233709-67bdbedb.png?_wi=1",
|
||||
},
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
|
||||
Reference in New Issue
Block a user