Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 40a1e235ca | |||
| 507812ce29 | |||
| b637d7f565 | |||
| 1cc950413f | |||
| e7cf45dcf9 | |||
| de12c3afa6 |
@@ -1,73 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
|
||||||
variable: "--font-mulish",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AICompare - Compare AI Tools & Find Your Perfect Solution",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${geist.variable} ${geistMono.variable}`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
172
src/app/page.tsx
172
src/app/page.tsx
@@ -8,6 +8,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|||||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
|
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
@@ -26,6 +27,9 @@ import {
|
|||||||
Linkedin,
|
Linkedin,
|
||||||
Github,
|
Github,
|
||||||
Mail,
|
Mail,
|
||||||
|
Lightbulb,
|
||||||
|
Target,
|
||||||
|
Rocket,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
@@ -55,7 +59,8 @@ export default function HomePage() {
|
|||||||
brandName="AICompare"
|
brandName="AICompare"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Start Comparing", href: "/comparison"}}
|
text: "Start Comparing", href: "/comparison"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -69,9 +74,11 @@ export default function HomePage() {
|
|||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
buttons={[
|
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"
|
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"
|
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={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Sarah Johnson", handle: "CEO, TechFlow", testimonial: "AICompare saved us weeks of research. Finding the right AI tool is now effortless.", rating: 5,
|
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,
|
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,
|
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,
|
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}
|
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,
|
title: "Detailed Comparison Matrix", description: "Side-by-side comparison of 50+ AI tools with 100+ evaluation criteria", icon: Grid3x3,
|
||||||
mediaItems: [
|
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,
|
title: "Unbiased Reviews & Ratings", description: "Community-driven ratings and verified user reviews for every AI tool", icon: Star,
|
||||||
mediaItems: [
|
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,
|
title: "Advanced Filtering & Search", description: "Find the perfect AI tool with intelligent filters by use case, price, and features", icon: Filter,
|
||||||
mediaItems: [
|
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,
|
title: "Performance Benchmarks", description: "Real-world performance metrics and speed comparisons for each tool", icon: TrendingUp,
|
||||||
mediaItems: [
|
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}
|
useInvertedBackground={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Explore All Features", href: "/features"},
|
text: "Explore All Features", href: "/features"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -163,19 +183,24 @@ export default function HomePage() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", brand: "OpenAI", name: "ChatGPT Pro", price: "$20/month", rating: 5,
|
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,
|
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,
|
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,
|
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,
|
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"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -183,12 +208,37 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Browse All Tools", href: "/comparison"},
|
text: "Browse All Tools", href: "/comparison"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardEight
|
<PricingCardEight
|
||||||
title="Simple, Transparent Pricing"
|
title="Simple, Transparent Pricing"
|
||||||
@@ -201,28 +251,34 @@ export default function HomePage() {
|
|||||||
id: "starter", badge: "Popular", badgeIcon: Sparkles,
|
id: "starter", badge: "Popular", badgeIcon: Sparkles,
|
||||||
price: "Free", subtitle: "Perfect for explorers", buttons: [
|
price: "Free", subtitle: "Perfect for explorers", buttons: [
|
||||||
{
|
{
|
||||||
text: "Get Started", href: "/signup"},
|
text: "Get Started", href: "/signup"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
features: [
|
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,
|
id: "pro", badge: "Most Popular", badgeIcon: Zap,
|
||||||
price: "$9/mo", subtitle: "For professionals", buttons: [
|
price: "$9/mo", subtitle: "For professionals", buttons: [
|
||||||
{
|
{
|
||||||
text: "Start Free Trial", href: "/signup?plan=pro"},
|
text: "Start Free Trial", href: "/signup?plan=pro"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
features: [
|
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,
|
id: "enterprise", badge: "For Teams", badgeIcon: Award,
|
||||||
price: "Custom", subtitle: "Tailored solutions", buttons: [
|
price: "Custom", subtitle: "Tailored solutions", buttons: [
|
||||||
{
|
{
|
||||||
text: "Contact Sales", href: "/contact"},
|
text: "Contact Sales", href: "/contact"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
features: [
|
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"
|
animationType="blur-reveal"
|
||||||
@@ -230,7 +286,8 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Compare All Plans", href: "/pricing"},
|
text: "Compare All Plans", href: "/pricing"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -244,7 +301,8 @@ export default function HomePage() {
|
|||||||
tagIcon={TrendingUp}
|
tagIcon={TrendingUp}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
names={[
|
names={[
|
||||||
"TechFlow", "InnovateLab", "CloudSync", "StartupXYZ", "DataCore", "VisionAI", "FutureScale", "NetAdvance"]}
|
"TechFlow", "InnovateLab", "CloudSync", "StartupXYZ", "DataCore", "VisionAI", "FutureScale", "NetAdvance"
|
||||||
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
speed={40}
|
speed={40}
|
||||||
@@ -261,17 +319,23 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
testimonials={[
|
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"
|
animationType="depth-3d"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -288,21 +352,29 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
faqs={[
|
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"
|
faqsAnimation="blur-reveal"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -318,16 +390,20 @@ export default function HomePage() {
|
|||||||
socialLinks={[
|
socialLinks={[
|
||||||
{
|
{
|
||||||
icon: Twitter,
|
icon: Twitter,
|
||||||
href: "https://twitter.com/aicompareio", ariaLabel: "Twitter"},
|
href: "https://twitter.com/aicompareio", ariaLabel: "Twitter"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Linkedin,
|
icon: Linkedin,
|
||||||
href: "https://linkedin.com/company/aicompare", ariaLabel: "LinkedIn"},
|
href: "https://linkedin.com/company/aicompare", ariaLabel: "LinkedIn"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Github,
|
icon: Github,
|
||||||
href: "https://github.com/aicompare", ariaLabel: "GitHub"},
|
href: "https://github.com/aicompare", ariaLabel: "GitHub"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
href: "mailto:hello@aicompare.io", ariaLabel: "Email"},
|
href: "mailto:hello@aicompare.io", ariaLabel: "Email"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user