Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0720e4bf94 | |||
| b5661d06f7 | |||
| 01282fe1f9 | |||
| 005913d480 | |||
| 2cf0ae68fb |
@@ -1,52 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "BuildAI - Create AI-Powered Apps Without Coding", description: "Build intelligent applications with AI in minutes. No coding required. Join thousands of developers creating next-generation apps with our no-code platform.", keywords: "AI app builder, no-code platform, artificial intelligence, app development, automation", metadataBase: new URL("https://buildai.example.com"),
|
title: "BuildAI - AI-Powered No-Code Application Builder", description: "Create intelligent applications with AI. Build powerful, AI-driven applications in minutes. No coding required."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://buildai.example.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "BuildAI - Create AI-Powered Apps Without Coding", description: "Build intelligent applications with AI in minutes. No coding required.", url: "https://buildai.example.com", siteName: "BuildAI", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUbwuQQHkM0UPR7XlYS2yk8l2u/a-sleek-modern-ai-application-builder-da-1772650413875-c8cfb1f5.png", alt: "BuildAI Platform Dashboard"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "BuildAI - Create AI-Powered Apps", description: "Build intelligent applications with AI in minutes", images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUbwuQQHkM0UPR7XlYS2yk8l2u/a-sleek-modern-ai-application-builder-da-1772650413875-c8cfb1f5.png"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ export default function LandingPage() {
|
|||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardNine
|
<PricingCardNine
|
||||||
title="Transparent Pricing, No Hidden Fees"
|
title="Transparent Pricing, No Hidden Fees"
|
||||||
description="Scale your AI applications as you grow. Choose the plan that fits your needs."
|
description="Enterprise plan includes Unlimited apps + Dedicated support + Custom AI training. Scale your AI applications as you grow. Choose the plan that fits your needs."
|
||||||
tag="Flexible Plans"
|
tag="Flexible Plans"
|
||||||
tagIcon={DollarSign}
|
tagIcon={DollarSign}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user