Merge version_2 into main #2
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AI Assistant - Advanced Coding, Image Analysis & Conversation", description: "State-of-the-art AI assistant platform with intelligent coding capabilities, precise image analysis, and sophisticated conversation. Seamlessly integrate advanced AI into your workflow.", keywords: "AI assistant, artificial intelligence, coding assistant, image analysis, machine learning, code completion, AI platform", metadataBase: new URL("https://aiassistant.com"),
|
||||
alternates: {
|
||||
canonical: "https://aiassistant.com"},
|
||||
openGraph: {
|
||||
title: "AI Assistant - Advanced AI Technology Platform", description: "Experience state-of-the-art AI with intelligent coding, image analysis, and conversation capabilities.", url: "https://aiassistant.com", siteName: "AI Assistant", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/a-cutting-edge-ai-assistant-interface-sh-1772867776024-bb3f9c72.png", alt: "AI Assistant Platform"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "AI Assistant - Advanced AI Technology", description: "Intelligent coding, image analysis, and conversation AI in one platform.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/a-cutting-edge-ai-assistant-interface-sh-1772867776024-bb3f9c72.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "AI Assistant Platform", description: "Advanced AI assistant with coding, image analysis, and intelligent conversation capabilities"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -78,17 +78,20 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "coding", label: "Code", title: "Intelligent Coding Assistant", items: [
|
||||
"Multi-language support", "Real-time debugging", "Code optimization", "Boilerplate generation"],
|
||||
"Multi-language support", "Real-time debugging", "Code optimization", "Boilerplate generation"
|
||||
],
|
||||
buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "image", label: "Image", title: "Advanced Image Analysis", items: [
|
||||
"Content recognition", "Text extraction", "Object detection", "Style transformation"],
|
||||
"Content recognition", "Text extraction", "Object detection", "Style transformation"
|
||||
],
|
||||
buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "conversation", label: "Chat", title: "Sophisticated Dialogue", items: [
|
||||
"Context awareness", "Nuanced responses", "Multi-domain knowledge", "Interactive exploration"],
|
||||
"Context awareness", "Nuanced responses", "Multi-domain knowledge", "Interactive exploration"
|
||||
],
|
||||
buttons: [{ text: "Learn More", href: "#" }],
|
||||
},
|
||||
]}
|
||||
@@ -126,19 +129,23 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "99.9%", title: "Query Accuracy", items: [
|
||||
"Verified across domains", "Continuous improvement", "Real-time optimization"],
|
||||
"Verified across domains", "Continuous improvement", "Real-time optimization"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", value: "10M+", title: "Requests Processed", items: [
|
||||
"Global infrastructure", "24/7 availability", "Sub-second latency"],
|
||||
"Global infrastructure", "24/7 availability", "Sub-second latency"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3", value: "500K+", title: "Active Users", items: [
|
||||
"Growing community", "Enterprise adoption", "Developer friendly"],
|
||||
"Growing community", "Enterprise adoption", "Developer friendly"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "4", value: "50+", title: "Languages Supported", items: [
|
||||
"Code assistance", "Multi-language support", "Framework integration"],
|
||||
"Code assistance", "Multi-language support", "Framework integration"
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -158,17 +165,23 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Chen", handle: "@sarahdevs", testimonial: "This AI assistant has completely transformed my development workflow. The coding suggestions are remarkably accurate and save me hours daily.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-soft-1772867775930-fe0e8b07.png", imageAlt: "Sarah Chen"},
|
||||
id: "1", name: "Sarah Chen", handle: "@sarahdevs", testimonial: "This AI assistant has completely transformed my development workflow. The coding suggestions are remarkably accurate and save me hours daily.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-soft-1772867775930-fe0e8b07.png", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Marcus Rodriguez", handle: "@marcustech", testimonial: "The image analysis capabilities are incredible. Extremely precise and the API integration was seamless. Highly recommend for any tech team.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-prod-1772867775678-47a99b8d.png", imageAlt: "Marcus Rodriguez"},
|
||||
id: "2", name: "Marcus Rodriguez", handle: "@marcustech", testimonial: "The image analysis capabilities are incredible. Extremely precise and the API integration was seamless. Highly recommend for any tech team.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-prod-1772867775678-47a99b8d.png", imageAlt: "Marcus Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Elena Petrova", handle: "@elenadata", testimonial: "As a data scientist, I appreciate the intelligent conversation features. It understands complex technical concepts and provides nuanced insights.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-data-1772867776089-97efb6ef.png", imageAlt: "Elena Petrova"},
|
||||
id: "3", name: "Elena Petrova", handle: "@elenadata", testimonial: "As a data scientist, I appreciate the intelligent conversation features. It understands complex technical concepts and provides nuanced insights.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-data-1772867776089-97efb6ef.png", imageAlt: "Elena Petrova"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Liu", handle: "@jamesui", testimonial: "The interface is sleek and intuitive. Every interaction feels thoughtfully designed. This is how advanced technology should feel.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-tech-1772867775819-eb9b6f3c.png", imageAlt: "James Liu"},
|
||||
id: "4", name: "James Liu", handle: "@jamesui", testimonial: "The interface is sleek and intuitive. Every interaction feels thoughtfully designed. This is how advanced technology should feel.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-tech-1772867775819-eb9b6f3c.png", imageAlt: "James Liu"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Priya Kapoor", handle: "@priyaml", testimonial: "Exceptional accuracy and speed. We integrated this into our production pipeline and saw immediate improvements in code quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-mach-1772867776040-0687dfc4.png", imageAlt: "Priya Kapoor"},
|
||||
id: "5", name: "Priya Kapoor", handle: "@priyaml", testimonial: "Exceptional accuracy and speed. We integrated this into our production pipeline and saw immediate improvements in code quality.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-mach-1772867776040-0687dfc4.png", imageAlt: "Priya Kapoor"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Alex Thompson", handle: "@alexdesign", testimonial: "The design and user experience are outstanding. Technical excellence paired with beautiful aesthetics. Exactly what we needed.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-ux-d-1772867776545-5abd0ffc.png", imageAlt: "Alex Thompson"},
|
||||
id: "6", name: "Alex Thompson", handle: "@alexdesign", testimonial: "The design and user experience are outstanding. Technical excellence paired with beautiful aesthetics. Exactly what we needed.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbiRAUsxvGReAO7hPXwHpEYbdS/professional-headshot-portrait-of-a-ux-d-1772867776545-5abd0ffc.png", imageAlt: "Alex Thompson"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -191,19 +204,22 @@ export default function LandingPage() {
|
||||
id: "starter", badge: "Popular", badgeIcon: Star,
|
||||
price: "Free", subtitle: "Perfect for getting started", buttons: [{ text: "Get Started", href: "#contact" }],
|
||||
features: [
|
||||
"Basic code assistance", "Simple image analysis", "100 requests/month", "Community support"],
|
||||
"Basic code assistance", "Simple image analysis", "100 requests/month", "Community support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Most Popular", badgeIcon: Zap,
|
||||
price: "$29/mo", subtitle: "For professional developers", buttons: [{ text: "Start Free Trial", href: "#contact" }],
|
||||
price: "$29/mo", subtitle: "Best for teams (Most ROI)", buttons: [{ text: "Start Free Trial", href: "#contact" }],
|
||||
features: [
|
||||
"Advanced code optimization", "Unlimited image analysis", "10,000 requests/month", "Priority email support", "Custom integrations"],
|
||||
"Advanced code optimization", "Unlimited image analysis", "10,000 requests/month", "Priority email support", "Custom integrations"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "For Teams", badgeIcon: Building2,
|
||||
price: "Custom", subtitle: "Enterprise-grade solution", buttons: [{ text: "Contact Sales", href: "#contact" }],
|
||||
features: [
|
||||
"Unlimited everything", "Dedicated support team", "Custom training", "SLA guarantee", "On-premise deployment"],
|
||||
"Unlimited everything", "Dedicated support team", "Custom training", "SLA guarantee", "On-premise deployment"
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -223,17 +239,23 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How accurate is the code assistance?", content: "Our code assistant maintains a 99.9% accuracy rate across 50+ programming languages. It's trained on millions of code examples and continuously learns from user feedback."},
|
||||
id: "1", title: "How accurate is the code assistance?", content: "Our code assistant maintains a 99.9% accuracy rate across 50+ programming languages. It's trained on millions of code examples and continuously learns from user feedback."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What programming languages are supported?", content: "We support Python, JavaScript, TypeScript, Java, C++, C#, Go, Rust, PHP, Ruby, Swift, Kotlin, and 38+ more languages with full syntax highlighting and intelligent suggestions."},
|
||||
id: "2", title: "What programming languages are supported?", content: "We support Python, JavaScript, TypeScript, Java, C++, C#, Go, Rust, PHP, Ruby, Swift, Kotlin, and 38+ more languages with full syntax highlighting and intelligent suggestions."
|
||||
},
|
||||
{
|
||||
id: "3", title: "How does image analysis work?", content: "Our image analysis uses advanced computer vision to detect objects, extract text (OCR), analyze composition, and apply intelligent transformations with options for editing and style transfer."},
|
||||
id: "3", title: "How does image analysis work?", content: "Our image analysis uses advanced computer vision to detect objects, extract text (OCR), analyze composition, and apply intelligent transformations with options for editing and style transfer."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Can I integrate this into my applications?", content: "Yes! We offer comprehensive REST APIs and SDKs for Python, JavaScript, and other languages. Integration typically takes less than an hour with our detailed documentation."},
|
||||
id: "4", title: "Can I integrate this into my applications?", content: "Yes! We offer comprehensive REST APIs and SDKs for Python, JavaScript, and other languages. Integration typically takes less than an hour with our detailed documentation."
|
||||
},
|
||||
{
|
||||
id: "5", title: "How is my data handled?", content: "All data is encrypted in transit and at rest. We comply with GDPR, CCPA, and SOC2 standards. Enterprise customers can opt for on-premise deployment for maximum control."},
|
||||
id: "5", title: "How is my data handled?", content: "All data is encrypted in transit and at rest. We comply with GDPR, CCPA, and SOC2 standards. Enterprise customers can opt for on-premise deployment for maximum control."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What kind of support is available?", content: "Pro and Enterprise users get priority email support with guaranteed response times. Enterprise includes a dedicated account manager and access to our technical team."},
|
||||
id: "6", title: "What kind of support is available?", content: "Pro and Enterprise users get priority email support with guaranteed response times. Enterprise includes a dedicated account manager and access to our technical team."
|
||||
},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user