13 Commits

Author SHA1 Message Date
33df6fe696 Switch to version 2: modified src/app/features/page.tsx 2026-03-07 10:45:44 +00:00
b92bbd6231 Switch to version 2: modified src/app/about/page.tsx 2026-03-07 10:45:44 +00:00
8bebf49b17 Merge version_3 into main
Merge version_3 into main
2026-03-07 10:32:53 +00:00
44827223ca Update src/app/features/page.tsx 2026-03-07 10:32:49 +00:00
3c496b6f5c Update src/app/about/page.tsx 2026-03-07 10:32:48 +00:00
9296e99599 Merge version_2 into main
Merge version_2 into main
2026-03-06 17:42:53 +00:00
40a1e235ca Update src/app/page.tsx 2026-03-06 17:42:48 +00:00
fb8b568d27 Merge version_2 into main
Merge version_2 into main
2026-03-06 17:41:47 +00:00
507812ce29 Update src/app/page.tsx 2026-03-06 17:41:42 +00:00
b637d7f565 Update src/app/layout.tsx 2026-03-06 17:41:42 +00:00
1cc950413f Merge version_1 into main
Merge version_1 into main
2026-03-06 17:37:10 +00:00
e7cf45dcf9 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:36:19 +00:00
de12c3afa6 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:34:16 +00:00
2 changed files with 138 additions and 109 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AICompare - Compare AI Tools & Find Your Perfect Solution",
description: "Discover and compare the best AI tools. Unbiased reviews, detailed comparisons, pricing analysis, and performance benchmarks for ChatGPT, Claude, Gemini, and 50+ more.",
keywords: "AI tool comparison, compare AI tools, AI comparison platform, AI reviews, ChatGPT vs Claude, AI pricing",
metadataBase: new URL("https://aicompare.io"),
alternates: {
canonical: "https://aicompare.io",
},
openGraph: {
title: "AICompare - AI Tool Comparison Platform",
description: "Compare 50+ AI tools with detailed features, pricing, and user reviews. Find the perfect AI solution.",
url: "https://aicompare.io",
siteName: "AICompare",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/modern-ai-comparison-dashboard-with-mult-1772818372312-1145f4c8.png",
alt: "AICompare platform dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "AICompare - Compare AI Tools Instantly",
description: "Comprehensive AI tool comparison platform with 50+ tools, unbiased reviews, and detailed comparisons.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/modern-ai-comparison-dashboard-with-mult-1772818372312-1145f4c8.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "AICompare - AI Tool Comparison Platform", description: "Compare AI tools side-by-side with our comprehensive comparison platform. Find the perfect AI tool for your needs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -8,6 +8,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
@@ -26,6 +27,9 @@ import {
Linkedin,
Github,
Mail,
Lightbulb,
Target,
Rocket,
} from "lucide-react";
export default function HomePage() {
@@ -55,7 +59,8 @@ export default function HomePage() {
brandName="AICompare"
navItems={navItems}
button={{
text: "Start Comparing", href: "/comparison"}}
text: "Start Comparing", href: "/comparison"
}}
/>
</div>
@@ -69,9 +74,11 @@ export default function HomePage() {
background={{ variant: "glowing-orb" }}
buttons={[
{
text: "Start Comparing Now", href: "/comparison"},
text: "Start Comparing Now", href: "/comparison"
},
{
text: "View Demo", href: "#features"},
text: "View Demo", href: "#features"
},
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/modern-ai-comparison-dashboard-with-mult-1772818372312-1145f4c8.png?_wi=1"
@@ -82,16 +89,20 @@ export default function HomePage() {
testimonials={[
{
name: "Sarah Johnson", handle: "CEO, TechFlow", testimonial: "AICompare saved us weeks of research. Finding the right AI tool is now effortless.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-confident-fem-1772818370965-11360354.png?_wi=1"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-confident-fem-1772818370965-11360354.png?_wi=1"
},
{
name: "Michael Chen", handle: "Product Manager, InnovateLab", testimonial: "The comparison matrix is incredibly detailed. Exactly what we needed for our team.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-p-1772818370897-5ef0f701.png?_wi=1"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-p-1772818370897-5ef0f701.png?_wi=1"
},
{
name: "Emma Rodriguez", handle: "VP Engineering, CloudSync", testimonial: "Best resource for evaluating AI tools. Transparent, comprehensive, and unbiased.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-hispanic-fema-1772818370283-cf318c4c.png?_wi=1"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-hispanic-fema-1772818370283-cf318c4c.png?_wi=1"
},
{
name: "David Kim", handle: "Founder, StartupXYZ", testimonial: "This platform is a game-changer for startup founders evaluating AI solutions.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-s-1772818373709-a3de73e6.png?_wi=1"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-s-1772818373709-a3de73e6.png?_wi=1"
},
]}
testimonialRotationInterval={5000}
/>
@@ -109,36 +120,44 @@ export default function HomePage() {
title: "Detailed Comparison Matrix", description: "Side-by-side comparison of 50+ AI tools with 100+ evaluation criteria", icon: Grid3x3,
mediaItems: [
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/detailed-comparison-matrix-interface-sho-1772818373378-4c788c11.png?_wi=1", imageAlt: "Comparison matrix interface"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/detailed-comparison-matrix-interface-sho-1772818373378-4c788c11.png?_wi=1", imageAlt: "Comparison matrix interface"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/advanced-comparison-matrix-showing-detai-1772818373677-61b5f61d.png?_wi=1", imageAlt: "Detailed feature comparison"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/advanced-comparison-matrix-showing-detai-1772818373677-61b5f61d.png?_wi=1", imageAlt: "Detailed feature comparison"
},
],
},
{
title: "Unbiased Reviews & Ratings", description: "Community-driven ratings and verified user reviews for every AI tool", icon: Star,
mediaItems: [
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/user-reviews-section-displaying-multiple-1772818371730-b767ffd7.png?_wi=1", imageAlt: "User reviews section"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/user-reviews-section-displaying-multiple-1772818371730-b767ffd7.png?_wi=1", imageAlt: "User reviews section"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/rating-visualization-dashboard-showing-a-1772818371270-a873a62f.png?_wi=1", imageAlt: "Rating visualization"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/rating-visualization-dashboard-showing-a-1772818371270-a873a62f.png?_wi=1", imageAlt: "Rating visualization"
},
],
},
{
title: "Advanced Filtering & Search", description: "Find the perfect AI tool with intelligent filters by use case, price, and features", icon: Filter,
mediaItems: [
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/advanced-filter-panel-showing-multiple-f-1772818371978-f67acfdc.png?_wi=1", imageAlt: "Advanced filter options"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/advanced-filter-panel-showing-multiple-f-1772818371978-f67acfdc.png?_wi=1", imageAlt: "Advanced filter options"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/search-results-interface-showing-filtere-1772818370884-3be9bd80.png?_wi=1", imageAlt: "Search results interface"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/search-results-interface-showing-filtere-1772818370884-3be9bd80.png?_wi=1", imageAlt: "Search results interface"
},
],
},
{
title: "Performance Benchmarks", description: "Real-world performance metrics and speed comparisons for each tool", icon: TrendingUp,
mediaItems: [
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/performance-benchmark-charts-showing-mul-1772818371178-86a75720.png?_wi=1", imageAlt: "Performance benchmark charts"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/performance-benchmark-charts-showing-mul-1772818371178-86a75720.png?_wi=1", imageAlt: "Performance benchmark charts"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/speed-comparison-dashboard-showing-real--1772818371565-31e1330a.png?_wi=1", imageAlt: "Speed comparison metrics"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/speed-comparison-dashboard-showing-real--1772818371565-31e1330a.png?_wi=1", imageAlt: "Speed comparison metrics"
},
],
},
]}
@@ -147,7 +166,8 @@ export default function HomePage() {
useInvertedBackground={true}
buttons={[
{
text: "Explore All Features", href: "/features"},
text: "Explore All Features", href: "/features"
},
]}
buttonAnimation="slide-up"
/>
@@ -163,19 +183,24 @@ export default function HomePage() {
products={[
{
id: "1", brand: "OpenAI", name: "ChatGPT Pro", price: "$20/month", rating: 5,
reviewCount: "12.5k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/chatgpt-pro-interface-screenshot-showing-1772818372587-4f0fa379.png", imageAlt: "ChatGPT Pro interface"},
reviewCount: "12.5k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/chatgpt-pro-interface-screenshot-showing-1772818372587-4f0fa379.png?_wi=1", imageAlt: "ChatGPT Pro interface"
},
{
id: "2", brand: "Anthropic", name: "Claude 3 Opus", price: "Custom", rating: 5,
reviewCount: "8.3k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/claude-3-opus-dashboard-showing-the-inte-1772818372525-ce375258.png", imageAlt: "Claude 3 Opus dashboard"},
reviewCount: "8.3k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/claude-3-opus-dashboard-showing-the-inte-1772818372525-ce375258.png?_wi=1", imageAlt: "Claude 3 Opus dashboard"
},
{
id: "3", brand: "Google", name: "Gemini Advanced", price: "$20/month", rating: 4,
reviewCount: "9.1k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/google-gemini-advanced-interface-showing-1772818370755-8a921e9e.png", imageAlt: "Gemini Advanced interface"},
reviewCount: "9.1k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/google-gemini-advanced-interface-showing-1772818370755-8a921e9e.png", imageAlt: "Gemini Advanced interface"
},
{
id: "4", brand: "Midjourney", name: "AI Image Generator", price: "$10/month", rating: 5,
reviewCount: "15.7k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/midjourney-image-generation-interface-sh-1772818371131-5117e15f.png", imageAlt: "Midjourney generation example"},
reviewCount: "15.7k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/midjourney-image-generation-interface-sh-1772818371131-5117e15f.png?_wi=1", imageAlt: "Midjourney generation example"
},
{
id: "5", brand: "Runway", name: "Video AI Studio", price: "$15/month", rating: 4,
reviewCount: "6.2k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/runway-video-creation-interface-showing--1772818371644-b8b1b3fb.png", imageAlt: "Runway video creation interface"},
reviewCount: "6.2k", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/runway-video-creation-interface-showing--1772818371644-b8b1b3fb.png", imageAlt: "Runway video creation interface"
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -183,12 +208,37 @@ export default function HomePage() {
useInvertedBackground={false}
buttons={[
{
text: "Browse All Tools", href: "/comparison"},
text: "Browse All Tools", href: "/comparison"
},
]}
buttonAnimation="slide-up"
/>
</div>
<div id="recommendations" data-section="recommendations">
<MetricCardEleven
title="Recommendations for You"
description="AI tools tailored to your specific needs and use case"
tag="Personalized"
tagIcon={Lightbulb}
tagAnimation="slide-up"
metrics={[
{
id: "1", value: "Best for Code", title: "GitHub Copilot", description: "AI-powered code completion and generation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/chatgpt-pro-interface-screenshot-showing-1772818372587-4f0fa379.png?_wi=2", imageAlt: "GitHub Copilot interface"
},
{
id: "2", value: "Best for Design", title: "Midjourney", description: "Creative AI image generation and design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/midjourney-image-generation-interface-sh-1772818371131-5117e15f.png?_wi=2", imageAlt: "Midjourney design tool"
},
{
id: "3", value: "Best for Writing", title: "Claude 3 Opus", description: "Advanced language model for content creation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/claude-3-opus-dashboard-showing-the-inte-1772818372525-ce375258.png?_wi=2", imageAlt: "Claude 3 Opus writing interface"
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Simple, Transparent Pricing"
@@ -201,28 +251,34 @@ export default function HomePage() {
id: "starter", badge: "Popular", badgeIcon: Sparkles,
price: "Free", subtitle: "Perfect for explorers", buttons: [
{
text: "Get Started", href: "/signup"},
text: "Get Started", href: "/signup"
},
],
features: [
"Access to 50+ AI tools", "Basic comparison matrix", "Community reviews", "Limited advanced filters"],
"Access to 50+ AI tools", "Basic comparison matrix", "Community reviews", "Limited advanced filters"
],
},
{
id: "pro", badge: "Most Popular", badgeIcon: Zap,
price: "$9/mo", subtitle: "For professionals", buttons: [
{
text: "Start Free Trial", href: "/signup?plan=pro"},
text: "Start Free Trial", href: "/signup?plan=pro"
},
],
features: [
"Everything in Starter", "Advanced comparison matrix", "Performance benchmarks", "Saved comparisons", "API access", "Priority support"],
"Everything in Starter", "Advanced comparison matrix", "Performance benchmarks", "Saved comparisons", "API access", "Priority support"
],
},
{
id: "enterprise", badge: "For Teams", badgeIcon: Award,
price: "Custom", subtitle: "Tailored solutions", buttons: [
{
text: "Contact Sales", href: "/contact"},
text: "Contact Sales", href: "/contact"
},
],
features: [
"Everything in Pro", "Custom AI tool database", "Dedicated support", "Team collaboration", "White-label options", "SLA guarantee"],
"Everything in Pro", "Custom AI tool database", "Dedicated support", "Team collaboration", "White-label options", "SLA guarantee"
],
},
]}
animationType="blur-reveal"
@@ -230,7 +286,8 @@ export default function HomePage() {
useInvertedBackground={true}
buttons={[
{
text: "Compare All Plans", href: "/pricing"},
text: "Compare All Plans", href: "/pricing"
},
]}
buttonAnimation="slide-up"
/>
@@ -244,7 +301,8 @@ export default function HomePage() {
tagIcon={TrendingUp}
tagAnimation="slide-up"
names={[
"TechFlow", "InnovateLab", "CloudSync", "StartupXYZ", "DataCore", "VisionAI", "FutureScale", "NetAdvance"]}
"TechFlow", "InnovateLab", "CloudSync", "StartupXYZ", "DataCore", "VisionAI", "FutureScale", "NetAdvance"
]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
@@ -261,17 +319,23 @@ export default function HomePage() {
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Sarah Johnson", role: "CEO, TechFlow", testimonial: "AICompare transformed how we evaluate and select AI tools. The detailed comparisons and unbiased reviews saved us hundreds of hours of research.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-female-profes-1772818370294-499afd79.png?_wi=1", imageAlt: "Sarah Johnson"},
id: "1", name: "Sarah Johnson", role: "CEO, TechFlow", testimonial: "AICompare transformed how we evaluate and select AI tools. The detailed comparisons and unbiased reviews saved us hundreds of hours of research.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-female-profes-1772818370294-499afd79.png?_wi=1", imageAlt: "Sarah Johnson"
},
{
id: "2", name: "Michael Chen", role: "Product Manager, InnovateLab", testimonial: "The comparison matrix is incredibly comprehensive. We've recommended AICompare to our entire team and many partner companies.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-i-1772818370602-d799844f.png?_wi=1", imageAlt: "Michael Chen"},
id: "2", name: "Michael Chen", role: "Product Manager, InnovateLab", testimonial: "The comparison matrix is incredibly comprehensive. We've recommended AICompare to our entire team and many partner companies.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-i-1772818370602-d799844f.png?_wi=1", imageAlt: "Michael Chen"
},
{
id: "3", name: "Emma Rodriguez", role: "VP Engineering, CloudSync", testimonial: "Finally, a platform that provides transparent, honest AI tool evaluations. It's become our go-to resource for all AI decisions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-hispanic-fema-1772818370489-e6345a98.png?_wi=1", imageAlt: "Emma Rodriguez"},
id: "3", name: "Emma Rodriguez", role: "VP Engineering, CloudSync", testimonial: "Finally, a platform that provides transparent, honest AI tool evaluations. It's become our go-to resource for all AI decisions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-hispanic-fema-1772818370489-e6345a98.png?_wi=1", imageAlt: "Emma Rodriguez"
},
{
id: "4", name: "David Kim", role: "Founder, StartupXYZ", testimonial: "As a startup founder, evaluating AI tools was overwhelming. AICompare made it simple and data-driven. Highly recommend!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-e-1772818369978-892a555a.png", imageAlt: "David Kim"},
id: "4", name: "David Kim", role: "Founder, StartupXYZ", testimonial: "As a startup founder, evaluating AI tools was overwhelming. AICompare made it simple and data-driven. Highly recommend!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-an-asian-male-e-1772818369978-892a555a.png", imageAlt: "David Kim"
},
{
id: "5", name: "Jessica Wong", role: "AI Researcher, VisionLab", testimonial: "The benchmark data and performance metrics are exactly what the AI research community needs. Outstanding platform.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-female-ai-res-1772818370324-8c9d5ba0.png", imageAlt: "Jessica Wong"},
id: "5", name: "Jessica Wong", role: "AI Researcher, VisionLab", testimonial: "The benchmark data and performance metrics are exactly what the AI research community needs. Outstanding platform.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-female-ai-res-1772818370324-8c9d5ba0.png", imageAlt: "Jessica Wong"
},
{
id: "6", name: "Marcus Thompson", role: "CTO, FutureScale", testimonial: "AICompare has become an essential tool in our evaluation process. The community-driven reviews add real value.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-male-cto-in-h-1772818370460-2e7cd994.png", imageAlt: "Marcus Thompson"},
id: "6", name: "Marcus Thompson", role: "CTO, FutureScale", testimonial: "AICompare has become an essential tool in our evaluation process. The community-driven reviews add real value.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6B6Nab987RVltEHQ53KP70Jb/professional-headshot-of-a-male-cto-in-h-1772818370460-2e7cd994.png", imageAlt: "Marcus Thompson"
},
]}
animationType="depth-3d"
textboxLayout="default"
@@ -288,21 +352,29 @@ export default function HomePage() {
tagAnimation="slide-up"
faqs={[
{
id: "1", title: "How often is the AI tool database updated?", content: "We update our database weekly with new AI tools and features. Tool information is verified by our team and community contributors to ensure accuracy and relevance."},
id: "1", title: "How often is the AI tool database updated?", content: "We update our database weekly with new AI tools and features. Tool information is verified by our team and community contributors to ensure accuracy and relevance."
},
{
id: "2", title: "Are the reviews and ratings unbiased?", content: "Yes, absolutely. All reviews are from verified users and are moderated to ensure quality. We have strict guidelines against spam, fake reviews, and commercial bias."},
id: "2", title: "Are the reviews and ratings unbiased?", content: "Yes, absolutely. All reviews are from verified users and are moderated to ensure quality. We have strict guidelines against spam, fake reviews, and commercial bias."
},
{
id: "3", title: "Can I suggest a new AI tool?", content: "Yes! We welcome community contributions. Pro users can submit new tools for review. Our team verifies and adds approved tools to the platform within 7 business days."},
id: "3", title: "Can I suggest a new AI tool?", content: "Yes! We welcome community contributions. Pro users can submit new tools for review. Our team verifies and adds approved tools to the platform within 7 business days."
},
{
id: "4", title: "Is there an API for accessing AICompare data?", content: "Yes, API access is available for Pro and Enterprise plans. This allows you to integrate our comparison data into your own applications and workflows."},
id: "4", title: "Is there an API for accessing AICompare data?", content: "Yes, API access is available for Pro and Enterprise plans. This allows you to integrate our comparison data into your own applications and workflows."
},
{
id: "5", title: "Do you offer custom comparisons for enterprise users?", content: "Absolutely. Enterprise customers can request custom comparison matrices tailored to specific use cases, industries, or evaluation criteria."},
id: "5", title: "Do you offer custom comparisons for enterprise users?", content: "Absolutely. Enterprise customers can request custom comparison matrices tailored to specific use cases, industries, or evaluation criteria."
},
{
id: "6", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and bank transfers for enterprise accounts. All payments are processed securely."},
id: "6", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and bank transfers for enterprise accounts. All payments are processed securely."
},
{
id: "7", title: "Can I cancel my subscription anytime?", content: "Yes, you can cancel anytime with no penalties. We offer a 7-day money-back guarantee if you're not satisfied with our service."},
id: "7", title: "Can I cancel my subscription anytime?", content: "Yes, you can cancel anytime with no penalties. We offer a 7-day money-back guarantee if you're not satisfied with our service."
},
{
id: "8", title: "How does the free tier work?", content: "The free tier provides access to our basic comparison matrix and community reviews for 50+ AI tools. Upgrade to Pro for advanced features like benchmarks and API access."},
id: "8", title: "How does the free tier work?", content: "The free tier provides access to our basic comparison matrix and community reviews for 50+ AI tools. Upgrade to Pro for advanced features like benchmarks and API access."
},
]}
faqsAnimation="blur-reveal"
textboxLayout="default"
@@ -318,19 +390,23 @@ export default function HomePage() {
socialLinks={[
{
icon: Twitter,
href: "https://twitter.com/aicompareio", ariaLabel: "Twitter"},
href: "https://twitter.com/aicompareio", ariaLabel: "Twitter"
},
{
icon: Linkedin,
href: "https://linkedin.com/company/aicompare", ariaLabel: "LinkedIn"},
href: "https://linkedin.com/company/aicompare", ariaLabel: "LinkedIn"
},
{
icon: Github,
href: "https://github.com/aicompare", ariaLabel: "GitHub"},
href: "https://github.com/aicompare", ariaLabel: "GitHub"
},
{
icon: Mail,
href: "mailto:hello@aicompare.io", ariaLabel: "Email"},
href: "mailto:hello@aicompare.io", ariaLabel: "Email"
},
]}
/>
</div>
</ThemeProvider>
);
}
}