Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7515262477 | |||
| fd985c0a33 | |||
| f9f60e78fc |
@@ -27,7 +27,7 @@ export default function AboutPage() {
|
|||||||
brandName="Basepex"
|
brandName="Basepex"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
{ name: "Sign Up", id: "https://app.basepex.com/signup" },
|
{ name: "Sign Up", id: "https://app.basepex.com/signup" },
|
||||||
|
|||||||
@@ -1,20 +1,69 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import { Archivo } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const halant = Halant({
|
||||||
|
variable: "--font-halant",
|
||||||
|
subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const archivo = Archivo({
|
||||||
|
variable: "--font-archivo",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Basepex - Enterprise AI Services Platform", description: "Deliver AI Receptionist, AI Website Builder, and AI Ad Generator to your clients—fully automated, end-to-end, with zero manual setup required."};
|
title: "Basepex - Enterprise AI Services Platform",
|
||||||
|
description: "Deliver AI Receptionist, AI Website Builder, and AI Ad Generator to clients. Fully automated, end-to-end services with zero manual setup.",
|
||||||
|
keywords: "AI services, SaaS platform, AI receptionist, website builder, ad generator, enterprise automation",
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "Basepex - Enterprise AI Services Platform",
|
||||||
|
description: "Complete AI solution for modern agencies and entrepreneurs",
|
||||||
|
type: "website",
|
||||||
|
siteName: "Basepex",
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/modern-saas-dashboard-with-multiple-data-1772894463729-4de7a692.png",
|
||||||
|
alt: "Basepex AI Dashboard",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image",
|
||||||
|
title: "Basepex - AI Services for Enterprise",
|
||||||
|
description: "AI Receptionist, Website Builder & Ad Generator in one platform",
|
||||||
|
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/modern-saas-dashboard-with-multiple-data-1772894463729-4de7a692.png"],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={inter.className}>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1382,6 +1431,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -30,7 +30,7 @@ export default function HomePage() {
|
|||||||
brandName="Basepex"
|
brandName="Basepex"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
{ name: "Sign Up", id: "https://app.basepex.com/signup" },
|
{ name: "Sign Up", id: "https://app.basepex.com/signup" },
|
||||||
@@ -80,13 +80,13 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "receptionist", title: "AI Receptionist", description: "24/7 call answering reduces missed leads by 40%. Appointment booking, SMS confirmations, and full CRM logging. Connects to Vapi.ai with automatic calendar integration.", tag: "Service 1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/ai-receptionist-feature-showcase-shows-a-1772894464335-f7bc3fba.png", imageAlt: "AI Receptionist Service", buttons: [{ text: "Learn More", href: "#" }],
|
id: "receptionist", title: "AI Receptionist", description: "24/7 call answering, appointment booking, SMS confirmations, and full CRM logging. Connects to Vapi.ai with automatic calendar integration. Reduces missed leads by 40% and increases booking conversions by 35%.", tag: "Service 1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/ai-receptionist-feature-showcase-shows-a-1772894464335-f7bc3fba.png", imageAlt: "AI Receptionist Service", buttons: [{ text: "Learn More", href: "#" }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "website", title: "AI Website Builder", description: "Professional websites live in 48 hours increase conversions by 35%. Automated creation with Stripe/Square integration, Calendly booking, SEO optimization, and custom domain setup.", tag: "Service 2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/website-builder-feature-visualization-sh-1772894466404-6a9605db.png", imageAlt: "Website Builder Service", buttons: [{ text: "Learn More", href: "#" }],
|
id: "website", title: "AI Website Builder", description: "Automated professional website creation with Stripe/Square integration, Calendly booking, SEO optimization, and custom domain setup—live in 48 hours. Eliminates 20 hours of manual development per site and increases lead capture by 60%.", tag: "Service 2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/website-builder-feature-visualization-sh-1772894466404-6a9605db.png", imageAlt: "Website Builder Service", buttons: [{ text: "Learn More", href: "#" }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "ads", title: "AI Ad Generator", description: "Generate 10 professional ads in 5 minutes, 10x faster than manual creation. 10 photoreal image ads + 5 cinematic video ads with burned-in watermarks on unpaid versions. Premium includes unlimited generations, no watermarks, and 2-hour human polish.", tag: "Service 3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/ai-ad-generator-showcase-showing-10-stat-1772894468353-454985e3.png", imageAlt: "Ad Generator Service", buttons: [{ text: "Learn More", href: "#" }],
|
id: "ads", title: "AI Ad Generator", description: "10 professional photoreal image ads + 5 cinematic video ads with burned-in watermarks on unpaid versions. Premium includes unlimited generations, no watermarks, and 2-hour human polish. Cuts ad production time by 85% and improves CTR by 45% through multi-variant testing.", tag: "Service 3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYAtim1ZLWPTHwy7Ez77qVJ5sx/ai-ad-generator-showcase-showing-10-stat-1772894468353-454985e3.png", imageAlt: "Ad Generator Service", buttons: [{ text: "Learn More", href: "#" }],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ export default function PricingPage() {
|
|||||||
brandName="Basepex"
|
brandName="Basepex"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
{ name: "Sign Up", id: "https://app.basepex.com/signup" },
|
{ name: "Sign Up", id: "https://app.basepex.com/signup" },
|
||||||
@@ -53,7 +53,8 @@ export default function PricingPage() {
|
|||||||
{ text: "View Details", href: "#" },
|
{ text: "View Details", href: "#" },
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"AI Receptionist (24/7 calls, bookings, CRM)", "Basic AI Website Builder", "AI Ad Generator (5 generations/month, watermarked)", "$497 setup fee", "Email support"],
|
"AI Receptionist (24/7 calls, bookings, CRM)", "Basic AI Website Builder", "AI Ad Generator (5 generations/month, watermarked)", "$497 setup fee", "Email support"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "premium", price: "$997/mo", name: "Premium", badge: "Most Popular - Unlimited Power", badgeIcon: Crown,
|
id: "premium", price: "$997/mo", name: "Premium", badge: "Most Popular - Unlimited Power", badgeIcon: Crown,
|
||||||
@@ -62,7 +63,8 @@ export default function PricingPage() {
|
|||||||
{ text: "Schedule Demo", href: "#" },
|
{ text: "Schedule Demo", href: "#" },
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"Everything in Standard", "Unlimited ad generations (no watermarks)", "10 static images + 5 cinematic videos per order", "Custom style selector (5 styles)", "Multi-modal variations (3 image sizes, video cuts)", "Platform-specific optimization", "A/B testing suggestions", "Performance analytics integration", "2-hour human polish option included", "Deep business intelligence tracking", "$2,000 setup fee", "Priority support"],
|
"Everything in Standard", "Unlimited ad generations (no watermarks)", "10 static images + 5 cinematic videos per order", "Custom style selector (5 styles)", "Multi-modal variations (3 image sizes, video cuts)", "Platform-specific optimization", "A/B testing suggestions", "Performance analytics integration", "2-hour human polish option included", "Deep business intelligence tracking", "$2,000 setup fee", "Priority support"
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -80,17 +82,23 @@ export default function PricingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "What's included in the setup fee?", content: "The setup fee covers: platform configuration, API integrations (Vapi.ai for receptionist, Stripe/Square for payments), initial onboarding consultation, and deployment of your first services. Premium setup includes additional customization and priority implementation."},
|
id: "1", title: "What's included in the setup fee?", content: "The setup fee covers: platform configuration, API integrations (Vapi.ai for receptionist, Stripe/Square for payments), initial onboarding consultation, and deployment of your first services. Premium setup includes additional customization and priority implementation."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Can I switch plans anytime?", content: "Yes! You can upgrade to Premium or downgrade to Standard at any time. Upgrades are prorated, and downgrades take effect at the next billing cycle."},
|
id: "2", title: "Can I switch plans anytime?", content: "Yes! You can upgrade to Premium or downgrade to Standard at any time. Upgrades are prorated, and downgrades take effect at the next billing cycle."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Is there a long-term contract?", content: "No contracts required. Both plans are month-to-month with no lock-in period. Cancel anytime, though we think you'll love it."},
|
id: "3", title: "Is there a long-term contract?", content: "No contracts required. Both plans are month-to-month with no lock-in period. Cancel anytime, though we think you'll love it."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Do you offer custom enterprise plans?", content: "Yes! For organizations with unique requirements, we offer custom enterprise pricing. Contact our sales team at sales@basepex.com for a custom quote."},
|
id: "4", title: "Do you offer custom enterprise plans?", content: "Yes! For organizations with unique requirements, we offer custom enterprise pricing. Contact our sales team at sales@basepex.com for a custom quote."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express) and can accommodate annual prepayment for a 15% discount."},
|
id: "5", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express) and can accommodate annual prepayment for a 15% discount."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", title: "Is there a free trial?", content: "Yes! Start with a 14-day free trial of either plan. No credit card required to get started. Full access to all features during the trial period."},
|
id: "6", title: "Is there a free trial?", content: "Yes! Start with a 14-day free trial of either plan. No credit card required to get started. Full access to all features during the trial period."
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user