Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a34035071 | |||
| 8de7bb3f3e | |||
| 0315672411 | |||
| f999bce4f6 | |||
| 15e6748267 | |||
| e62d2b7f5a | |||
| 3be0b3f9f6 |
@@ -8,8 +8,10 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { MessageSquare, Settings, Shield, User } from "lucide-react";
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function LandingPage() {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -40,7 +42,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
brandName="AI 17"
|
||||
button={{
|
||||
text: "Start Chat", href: "/ai-chat"}}
|
||||
text: "Start Chat", href: "/ai-chat", onClick: () => router.push('/ai-chat')}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -6,8 +6,10 @@ import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function LandingPage() {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -26,30 +28,19 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "AI Chat",
|
||||
id: "/ai-chat",
|
||||
},
|
||||
name: "AI Chat", id: "/ai-chat"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Creator",
|
||||
id: "/creator",
|
||||
},
|
||||
name: "Creator", id: "/creator"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="AI 17"
|
||||
button={{
|
||||
text: "Start Chat",
|
||||
href: "/ai-chat",
|
||||
text: "Start Chat", href: "/ai-chat", onClick: () => router.push('/ai-chat'),
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -59,13 +50,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Your Intelligent Chat Companion"
|
||||
description={[
|
||||
"Experience fast, simple, and smart conversations with AI 17. Get instant, accurate answers designed to boost your productivity.",
|
||||
]}
|
||||
"Experience fast, simple, and smart conversations with AI 17. Get instant, accurate answers designed to boost your productivity."]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Start a New Chat",
|
||||
href: "/ai-chat",
|
||||
},
|
||||
text: "Start a New Chat", href: "/ai-chat"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -76,20 +64,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "tip-1",
|
||||
title: "How to get the best answers?",
|
||||
content: "For concise and accurate responses, try to ask clear and specific questions. The more direct your query, the better AI 17 can assist you.",
|
||||
},
|
||||
id: "tip-1", title: "How to get the best answers?", content: "For concise and accurate responses, try to ask clear and specific questions. The more direct your query, the better AI 17 can assist you."},
|
||||
{
|
||||
id: "tip-2",
|
||||
title: "What if I need a different language?",
|
||||
content: "AI 17 automatically detects your language. Feel free to type in English or Uzbek, and the assistant will respond accordingly.",
|
||||
},
|
||||
id: "tip-2", title: "What if I need a different language?", content: "AI 17 automatically detects your language. Feel free to type in English or Uzbek, and the assistant will respond accordingly."},
|
||||
{
|
||||
id: "tip-3",
|
||||
title: "How can I start a new conversation?",
|
||||
content: "Simply click the 'New Chat' button. This will clear the current context and allow you to begin a fresh conversation with AI 17.",
|
||||
},
|
||||
id: "tip-3", title: "How can I start a new conversation?", content: "Simply click the 'New Chat' button. This will clear the current context and allow you to begin a fresh conversation with AI 17."},
|
||||
]}
|
||||
title="Tips for Using AI 17 Chat"
|
||||
description="Maximize your productivity and get the most out of your AI assistant with these helpful pointers."
|
||||
@@ -102,46 +81,29 @@ export default function LandingPage() {
|
||||
logoText="AI 17"
|
||||
columns={[
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{
|
||||
label: "AI Chat",
|
||||
href: "/ai-chat",
|
||||
},
|
||||
label: "AI Chat", href: "/ai-chat"},
|
||||
{
|
||||
label: "Features",
|
||||
href: "/#features",
|
||||
},
|
||||
label: "Features", href: "/#features"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "The Creator",
|
||||
href: "/creator",
|
||||
},
|
||||
label: "The Creator", href: "/creator"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Personal Telegram",
|
||||
href: "https://t.me/Otabekov_Azizbek",
|
||||
},
|
||||
label: "Personal Telegram", href: "https://t.me/Otabekov_Azizbek"},
|
||||
{
|
||||
label: "Telegram Channel",
|
||||
href: "https://t.me/Otabekovsblog",
|
||||
},
|
||||
label: "Telegram Channel", href: "https://t.me/Otabekovsblog"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -6,8 +6,10 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function LandingPage() {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -38,7 +40,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
brandName="AI 17"
|
||||
button={{
|
||||
text: "Start Chat", href: "/ai-chat"}}
|
||||
text: "Start Chat", href: "/ai-chat", onClick: () => router.push('/ai-chat')}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -6,8 +6,10 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function LandingPage() {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -26,30 +28,19 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "AI Chat",
|
||||
id: "/ai-chat",
|
||||
},
|
||||
name: "AI Chat", id: "/ai-chat"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Creator",
|
||||
id: "/creator",
|
||||
},
|
||||
name: "Creator", id: "/creator"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="AI 17"
|
||||
button={{
|
||||
text: "Start Chat",
|
||||
href: "/ai-chat",
|
||||
text: "Start Chat", href: "/ai-chat", onClick: () => router.push('/ai-chat'),
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -62,12 +53,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "azizbek-full",
|
||||
name: "Azizbek Otabekov",
|
||||
role: "Founder & Lead Developer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-using-computer-stressed-tired-library-university_839833-34350.jpg",
|
||||
imageAlt: "Azizbek Otabekov Full Portrait",
|
||||
},
|
||||
id: "azizbek-full", name: "Azizbek Otabekov", role: "Founder & Lead Developer", imageSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-using-computer-stressed-tired-library-university_839833-34350.jpg", imageAlt: "Azizbek Otabekov Full Portrait"},
|
||||
]}
|
||||
title="Meet the Creator: Azizbek Otabekov"
|
||||
description="Azizbek Otabekov is a student, AI enthusiast, and future software developer from Uzbekistan. He is passionate about technology, artificial intelligence, startups, education, and innovation. He created AI 17 to democratize access to intelligent assistance for students and learners worldwide."
|
||||
@@ -79,19 +65,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Connect with Azizbek"
|
||||
description={[
|
||||
"Location: Jizzakh Region, Uzbekistan",
|
||||
"Personal Telegram: @Otabekov_Azizbek",
|
||||
"Telegram Channel: @Otabekovsblog",
|
||||
]}
|
||||
"Location: Jizzakh Region, Uzbekistan", "Personal Telegram: @Otabekov_Azizbek", "Telegram Channel: @Otabekovsblog"]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Open Personal Telegram",
|
||||
href: "https://t.me/Otabekov_Azizbek",
|
||||
},
|
||||
text: "Open Personal Telegram", href: "https://t.me/Otabekov_Azizbek"},
|
||||
{
|
||||
text: "Visit Telegram Channel",
|
||||
href: "https://t.me/Otabekovsblog",
|
||||
},
|
||||
text: "Visit Telegram Channel", href: "https://t.me/Otabekovsblog"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -101,46 +80,29 @@ export default function LandingPage() {
|
||||
logoText="AI 17"
|
||||
columns={[
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{
|
||||
label: "AI Chat",
|
||||
href: "/ai-chat",
|
||||
},
|
||||
label: "AI Chat", href: "/ai-chat"},
|
||||
{
|
||||
label: "Features",
|
||||
href: "/#features",
|
||||
},
|
||||
label: "Features", href: "/#features"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "The Creator",
|
||||
href: "/creator",
|
||||
},
|
||||
label: "The Creator", href: "/creator"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Personal Telegram",
|
||||
href: "https://t.me/Otabekov_Azizbek",
|
||||
},
|
||||
label: "Personal Telegram", href: "https://t.me/Otabekov_Azizbek"},
|
||||
{
|
||||
label: "Telegram Channel",
|
||||
href: "https://t.me/Otabekovsblog",
|
||||
},
|
||||
label: "Telegram Channel", href: "https://t.me/Otabekovsblog"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
212
src/app/page.tsx
212
src/app/page.tsx
@@ -10,8 +10,10 @@ import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { FastForward, Globe, GraduationCap, Lightbulb, Rocket, Sparkles } from "lucide-react";
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function LandingPage() {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -30,30 +32,19 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "AI Chat",
|
||||
id: "/ai-chat",
|
||||
},
|
||||
name: "AI Chat", id: "/ai-chat"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Creator",
|
||||
id: "/creator",
|
||||
},
|
||||
name: "Creator", id: "/creator"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="AI 17"
|
||||
button={{
|
||||
text: "Start Chat",
|
||||
href: "/ai-chat",
|
||||
text: "Start Chat", href: "/ai-chat", onClick: () => router.push('/ai-chat'),
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -61,68 +52,45 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "animated-grid",
|
||||
}}
|
||||
variant: "animated-grid"}}
|
||||
title="AI 17"
|
||||
description="Get quick answers, learn faster, and stay productive with AI 17. Your intelligent companion for studies and creative work."
|
||||
tag="Fast. Smart. Simple."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Chat",
|
||||
href: "/ai-chat",
|
||||
},
|
||||
text: "Start Chat", href: "/ai-chat"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg"
|
||||
imageAlt="AI 17 Assistant Interface"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-working-animation-studio_23-2149207964.jpg",
|
||||
alt: "Student working on digital monitors",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-working-animation-studio_23-2149207964.jpg", alt: "Student working on digital monitors"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-young-man-wearing-vr-headset-dark-wall_179666-39863.jpg",
|
||||
alt: "Man with VR headset",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-young-man-wearing-vr-headset-dark-wall_179666-39863.jpg", alt: "Man with VR headset"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/back-view-man-adjusting-his-sport-watch_23-2148375928.jpg",
|
||||
alt: "Businessman with smartwatch hologram",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/back-view-man-adjusting-his-sport-watch_23-2148375928.jpg", alt: "Businessman with smartwatch hologram"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/asian-girl-pressing-digital-screen-futuristic-technology_53876-119718.jpg",
|
||||
alt: "Researcher with transparent tablet",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/asian-girl-pressing-digital-screen-futuristic-technology_53876-119718.jpg", alt: "Researcher with transparent tablet"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-working-late-night-laptop_23-2150280971.jpg",
|
||||
alt: "Young person working at night",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-working-late-night-laptop_23-2150280971.jpg", alt: "Young person working at night"},
|
||||
]}
|
||||
avatarText="Trusted by 1000+ students and creators"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Instant Answers",
|
||||
icon: FastForward,
|
||||
type: "text-icon", text: "Instant Answers", icon: FastForward,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Effortless Learning",
|
||||
icon: GraduationCap,
|
||||
type: "text-icon", text: "Effortless Learning", icon: GraduationCap,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Bilingual Support",
|
||||
icon: Globe,
|
||||
type: "text-icon", text: "Bilingual Support", icon: Globe,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Creative Spark",
|
||||
icon: Lightbulb,
|
||||
type: "text-icon", text: "Creative Spark", icon: Lightbulb,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Productivity Boost",
|
||||
icon: Rocket,
|
||||
type: "text-icon", text: "Productivity Boost", icon: Rocket,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -134,53 +102,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
tag: "Speed",
|
||||
title: "Fast Responses",
|
||||
subtitle: "Get instant answers",
|
||||
description: "AI 17 is engineered for speed, providing concise answers almost instantly to keep your workflow uninterrupted.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/neon-lightning-bolt-sign-glowing-dark-background-energy-concept_84443-91502.jpg",
|
||||
imageAlt: "Fast Responses Icon",
|
||||
},
|
||||
tag: "Speed", title: "Fast Responses", subtitle: "Get instant answers", description: "AI 17 is engineered for speed, providing concise answers almost instantly to keep your workflow uninterrupted.", imageSrc: "http://img.b2bpic.net/free-photo/neon-lightning-bolt-sign-glowing-dark-background-energy-concept_84443-91502.jpg", imageAlt: "Fast Responses Icon"},
|
||||
{
|
||||
tag: "Clarity",
|
||||
title: "Simple Answers",
|
||||
subtitle: "Understand easily",
|
||||
description: "Our AI simplifies complex topics into easy-to-understand explanations, making learning effortless for everyone.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-illustrating-ethics-concept_23-2149412287.jpg",
|
||||
imageAlt: "Simple Answers Icon",
|
||||
},
|
||||
tag: "Clarity", title: "Simple Answers", subtitle: "Understand easily", description: "Our AI simplifies complex topics into easy-to-understand explanations, making learning effortless for everyone.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-illustrating-ethics-concept_23-2149412287.jpg", imageAlt: "Simple Answers Icon"},
|
||||
{
|
||||
tag: "Education",
|
||||
title: "Student Friendly",
|
||||
subtitle: "Boost your studies",
|
||||
description: "Designed with students in mind, AI 17 helps you grasp concepts quicker and excel in your academic journey.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-drawn-light-bulb-clipboard-blackboard_23-2147873901.jpg",
|
||||
imageAlt: "Student Friendly Icon",
|
||||
},
|
||||
tag: "Education", title: "Student Friendly", subtitle: "Boost your studies", description: "Designed with students in mind, AI 17 helps you grasp concepts quicker and excel in your academic journey.", imageSrc: "http://img.b2bpic.net/free-photo/hand-drawn-light-bulb-clipboard-blackboard_23-2147873901.jpg", imageAlt: "Student Friendly Icon"},
|
||||
{
|
||||
tag: "Global",
|
||||
title: "Bilingual Support",
|
||||
subtitle: "English & Uzbek",
|
||||
description: "AI 17 offers comprehensive bilingual support, understanding and responding in both English and Uzbek for wider accessibility.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-person-with-thought-bubble_23-2149184849.jpg",
|
||||
imageAlt: "Bilingual Support Icon",
|
||||
},
|
||||
tag: "Global", title: "Bilingual Support", subtitle: "English & Uzbek", description: "AI 17 offers comprehensive bilingual support, understanding and responding in both English and Uzbek for wider accessibility.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-person-with-thought-bubble_23-2149184849.jpg", imageAlt: "Bilingual Support Icon"},
|
||||
{
|
||||
tag: "Experience",
|
||||
title: "Modern AI Experience",
|
||||
subtitle: "Sleek & Intuitive",
|
||||
description: "Enjoy a cutting-edge AI interaction with a sleek, minimalist interface and intuitive design for maximum productivity.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-illustration-mental-health-day-awareness_23-2151813274.jpg",
|
||||
imageAlt: "Modern AI Experience Icon",
|
||||
},
|
||||
tag: "Experience", title: "Modern AI Experience", subtitle: "Sleek & Intuitive", description: "Enjoy a cutting-edge AI interaction with a sleek, minimalist interface and intuitive design for maximum productivity.", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-illustration-mental-health-day-awareness_23-2151813274.jpg", imageAlt: "Modern AI Experience Icon"},
|
||||
{
|
||||
tag: "Accessibility",
|
||||
title: "Easy to Use",
|
||||
subtitle: "Seamless Interaction",
|
||||
description: "With a user-friendly design, AI 17 ensures a smooth and effortless experience from your very first interaction.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-pawns-with-glass-divider-coronavirus-safety_23-2148748992.jpg",
|
||||
imageAlt: "Easy to Use Icon",
|
||||
},
|
||||
tag: "Accessibility", title: "Easy to Use", subtitle: "Seamless Interaction", description: "With a user-friendly design, AI 17 ensures a smooth and effortless experience from your very first interaction.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-pawns-with-glass-divider-coronavirus-safety_23-2148748992.jpg", imageAlt: "Easy to Use Icon"},
|
||||
]}
|
||||
title="Intelligent Features for Modern Learners"
|
||||
description="AI 17 empowers students and creators with cutting-edge tools designed for efficiency and understanding."
|
||||
@@ -192,14 +124,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="About AI 17"
|
||||
description={[
|
||||
"AI 17 is an intelligent AI assistant crafted for students, learners, creators, and everyday users.",
|
||||
"Our platform delivers quick, concise, and helpful answers in a clean, professional environment, fostering accessibility and understanding.",
|
||||
]}
|
||||
"AI 17 is an intelligent AI assistant crafted for students, learners, creators, and everyday users.", "Our platform delivers quick, concise, and helpful answers in a clean, professional environment, fostering accessibility and understanding."]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "/about",
|
||||
},
|
||||
text: "Learn More", href: "/about"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -212,12 +140,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
members={[
|
||||
{
|
||||
id: "azizbek",
|
||||
name: "Azizbek Otabekov",
|
||||
role: "Creator & Founder",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-attractive-man_1150-16945.jpg",
|
||||
imageAlt: "Azizbek Otabekov",
|
||||
},
|
||||
id: "azizbek", name: "Azizbek Otabekov", role: "Creator & Founder", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-attractive-man_1150-16945.jpg", imageAlt: "Azizbek Otabekov"},
|
||||
]}
|
||||
title="Meet the Visionary Behind AI 17"
|
||||
description="Azizbek Otabekov, a passionate student and AI enthusiast, is dedicated to making knowledge and technology accessible worldwide."
|
||||
@@ -232,48 +155,22 @@ export default function LandingPage() {
|
||||
cardTagIcon={Sparkles}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-from-home_23-2149130574.jpg",
|
||||
imageAlt: "Avatar of Sarah L.",
|
||||
},
|
||||
id: "t1", name: "Sarah L.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-from-home_23-2149130574.jpg", imageAlt: "Avatar of Sarah L."},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Omar K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-freelancer-man-with-stylish-beard-hair-dressed-black-suit-sitting-cafe-with-open-laptop-holds-cup-coffee-looking-camera_613910-5556.jpg",
|
||||
imageAlt: "Avatar of Omar K.",
|
||||
},
|
||||
id: "t2", name: "Omar K.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-freelancer-man-with-stylish-beard-hair-dressed-black-suit-sitting-cafe-with-open-laptop-holds-cup-coffee-looking-camera_613910-5556.jpg", imageAlt: "Avatar of Omar K."},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Elara P.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ai-startup-office-software-developer-designing-implementing-algorithms_482257-127801.jpg",
|
||||
imageAlt: "Avatar of Elara P.",
|
||||
},
|
||||
id: "t3", name: "Elara P.", imageSrc: "http://img.b2bpic.net/free-photo/ai-startup-office-software-developer-designing-implementing-algorithms_482257-127801.jpg", imageAlt: "Avatar of Elara P."},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David M.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-couple-love_23-2147986371.jpg",
|
||||
imageAlt: "Avatar of David M.",
|
||||
},
|
||||
id: "t4", name: "David M.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-couple-love_23-2147986371.jpg", imageAlt: "Avatar of David M."},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Aisha R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-with-social-media-addiction_23-2149324645.jpg",
|
||||
imageAlt: "Avatar of Aisha R.",
|
||||
},
|
||||
id: "t5", name: "Aisha R.", imageSrc: "http://img.b2bpic.net/free-photo/young-adults-with-social-media-addiction_23-2149324645.jpg", imageAlt: "Avatar of Aisha R."},
|
||||
{
|
||||
id: "t6",
|
||||
name: "Ben Carter",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-friends-listening-music-with-headphones_23-2148143240.jpg",
|
||||
imageAlt: "Avatar of Ben Carter",
|
||||
},
|
||||
id: "t6", name: "Ben Carter", imageSrc: "http://img.b2bpic.net/free-photo/female-friends-listening-music-with-headphones_23-2148143240.jpg", imageAlt: "Avatar of Ben Carter"},
|
||||
]}
|
||||
cardAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Read All Testimonials",
|
||||
href: "/testimonials",
|
||||
},
|
||||
text: "Read All Testimonials", href: "/testimonials"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -283,46 +180,29 @@ export default function LandingPage() {
|
||||
logoText="AI 17"
|
||||
columns={[
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{
|
||||
label: "AI Chat",
|
||||
href: "/ai-chat",
|
||||
},
|
||||
label: "AI Chat", href: "/ai-chat"},
|
||||
{
|
||||
label: "Features",
|
||||
href: "/#features",
|
||||
},
|
||||
label: "Features", href: "/#features"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "The Creator",
|
||||
href: "/creator",
|
||||
},
|
||||
label: "The Creator", href: "/creator"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Personal Telegram",
|
||||
href: "https://t.me/Otabekov_Azizbek",
|
||||
},
|
||||
label: "Personal Telegram", href: "https://t.me/Otabekov_Azizbek"},
|
||||
{
|
||||
label: "Telegram Channel",
|
||||
href: "https://t.me/Otabekovsblog",
|
||||
},
|
||||
label: "Telegram Channel", href: "https://t.me/Otabekovsblog"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user