앞단 작업

This commit is contained in:
seungil.oh 2026-01-14 17:24:19 +09:00
parent d998261177
commit 8f6333b5fd
17 changed files with 7453 additions and 132 deletions

163
.gitignore vendored
View File

@ -1,138 +1,41 @@
# ---> Node # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Logs
logs # dependencies
*.log /node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
lerna-debug.log*
.pnpm-debug.log* .pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html) # env files (can opt-in for committing if needed)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json .env*
# Runtime data # vercel
pids .vercel
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover # typescript
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo *.tsbuildinfo
next-env.d.ts
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# vitepress build output
**/.vitepress/dist
# vitepress cache directory
**/.vitepress/cache
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

View File

@ -1,3 +1,63 @@
# iykyka # AI Messenger - 차세대 AI 기반 메신저 플랫폼
Next.js 기반 관리자 프론트엔드 AI 기술로 업계를 선도하는 자동화 가능한 메신저 프로젝트의 소개 웹사이트입니다.
## 🚀 특징
- **모던한 디자인**: 힙하고 영한 UI/UX 디자인
- **반응형 레이아웃**: 모든 기기에서 완벽하게 작동
- **부드러운 애니메이션**: Framer Motion을 활용한 인터랙티브한 경험
- **AI 중심 메시징**: 지능형 자동화 및 스마트 기능 강조
## 🛠️ 기술 스택
- **Next.js 16**: React 기반 풀스택 프레임워크
- **TypeScript**: 타입 안정성
- **Tailwind CSS**: 유틸리티 기반 스타일링
- **Framer Motion**: 애니메이션 라이브러리
- **Lucide React**: 모던한 아이콘 세트
## 📦 설치 및 실행
```bash
# 의존성 설치
npm install
# 개발 서버 실행
npm run dev
```
브라우저에서 [http://localhost:3000](http://localhost:3000)을 열어 확인하세요.
## 🎨 주요 섹션
1. **히어로 섹션**: 강력한 헤드라인과 CTA 버튼
2. **기능 소개**: 6가지 핵심 기능 카드
3. **AI 자동화**: 지능형 자동화 기능 상세 설명
4. **CTA 섹션**: 사용자 유도 액션
5. **푸터**: 네비게이션 및 링크
## 📝 프로젝트 구조
```
iykyka/
├── app/
│ ├── layout.tsx # 루트 레이아웃
│ ├── page.tsx # 메인 페이지
│ └── globals.css # 전역 스타일
├── public/ # 정적 파일
└── package.json # 의존성 관리
```
## 🎯 주요 기능
- AI 기반 지능형 대화
- 스마트 자동화
- 엔터프라이즈급 보팀
- 실시간 동기화
- 스마트 협업
- 무한 확장성
## 📄 라이선스
이 프로젝트는 팀 프로젝트입니다.

BIN
app/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

57
app/globals.css Normal file
View File

@ -0,0 +1,57 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-geist-sans), system-ui, -apple-system, sans-serif;
}
* {
scroll-behavior: smooth;
}
html {
overflow-x: hidden;
}
/* 네온 글로우 효과 */
@keyframes neon-glow {
0%, 100% {
text-shadow:
0 0 10px rgba(6, 182, 212, 0.5),
0 0 20px rgba(6, 182, 212, 0.5),
0 0 30px rgba(6, 182, 212, 0.5),
0 0 40px rgba(16, 185, 129, 0.5);
}
50% {
text-shadow:
0 0 20px rgba(6, 182, 212, 0.8),
0 0 30px rgba(6, 182, 212, 0.8),
0 0 40px rgba(6, 182, 212, 0.8),
0 0 50px rgba(16, 185, 129, 0.8),
0 0 60px rgba(16, 185, 129, 0.6);
}
}
.neon-text {
animation: neon-glow 3s ease-in-out infinite;
}

34
app/layout.tsx Normal file
View File

@ -0,0 +1,34 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "IYKYKA - 차세대 AI 기반 메신저 플랫폼",
description: "IYKYKA - AI 기술로 업계를 선도하는 자동화 가능한 메신저. 지능형 대화와 자동화로 커뮤니케이션의 미래를 경험하세요.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}

565
app/page.tsx Normal file
View File

@ -0,0 +1,565 @@
"use client";
import { motion } from "framer-motion";
import {
Sparkles,
Zap,
Brain,
MessageSquare,
Bot,
ArrowRight,
CheckCircle2,
Shield,
Clock,
Users,
Rocket
} from "lucide-react";
export default function Home() {
const features = [
{
icon: Brain,
title: "AI 기반 지능형 대화",
description: "최첨단 AI가 대화를 이해하고 맥락에 맞는 응답을 제공합니다.",
color: "from-cyan-400 to-fuchsia-500"
},
{
icon: Zap,
title: "스마트 자동화",
description: "반복적인 작업을 자동화하고 효율성을 극대화하세요.",
color: "from-emerald-400 to-cyan-500"
},
{
icon: Shield,
title: "엔터프라이즈급 보안",
description: "최고 수준의 암호화로 모든 대화를 안전하게 보호합니다.",
color: "from-fuchsia-400 to-pink-500"
},
{
icon: Clock,
title: "실시간 동기화",
description: "모든 기기에서 즉시 동기화되는 실시간 메시징 경험.",
color: "from-cyan-500 to-blue-600"
},
{
icon: Users,
title: "스마트 협업",
description: "AI가 팀 협업을 돕고 프로젝트 관리를 자동화합니다.",
color: "from-emerald-500 to-teal-500"
},
{
icon: Rocket,
title: "무한 확장성",
description: "개인 사용자부터 대기업까지 모든 규모에 대응합니다.",
color: "from-cyan-500 via-fuchsia-500 to-emerald-500"
}
];
const animations = {
fadeInUp: {
initial: { opacity: 0, y: 30 },
animate: { opacity: 1, y: 0 },
transition: { duration: 0.6 }
},
stagger: {
initial: { opacity: 0, y: 20 },
animate: { opacity: 1, y: 0 },
transition: { duration: 0.5 }
}
};
return (
<div className="min-h-screen bg-gradient-to-br from-slate-950 via-cyan-950 to-slate-950 relative overflow-hidden">
{/* 펑키한 배경 패턴 */}
<div className="absolute inset-0 opacity-20">
<div className="absolute top-0 left-0 w-full h-full bg-[radial-gradient(circle_at_20%_50%,rgba(6,182,212,0.3),transparent_50%)]"></div>
<div className="absolute top-0 right-0 w-full h-full bg-[radial-gradient(circle_at_80%_50%,rgba(244,114,182,0.3),transparent_50%)]"></div>
<div className="absolute bottom-0 left-1/2 w-full h-full bg-[radial-gradient(circle_at_50%_100%,rgba(16,185,129,0.3),transparent_50%)]"></div>
</div>
{/* Navigation */}
<nav className="fixed top-0 w-full z-50 backdrop-blur-md bg-black/30 border-b border-cyan-500/20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between items-center h-16">
<motion.div
initial={{ opacity: 0, x: -20 }}
animate={{ opacity: 1, x: 0 }}
className="flex items-center space-x-2"
>
<motion.div
whileHover={{ scale: 1.1, rotate: 5 }}
transition={{ type: "spring", stiffness: 300 }}
>
<MessageSquare className="w-8 h-8 text-cyan-400 drop-shadow-[0_0_8px_rgba(6,182,212,0.8)]" />
</motion.div>
<motion.span
className="text-2xl font-black tracking-tight"
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 5,
repeat: Infinity,
ease: "linear"
}}
style={{
background: "linear-gradient(90deg, #06b6d4, #10b981, #f472b6, #06b6d4)",
backgroundSize: "200% auto",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
backgroundClip: "text",
filter: "drop-shadow(0 0 8px rgba(6,182,212,0.6))"
}}
>
IYKYKA
</motion.span>
</motion.div>
<motion.div
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
className="flex items-center space-x-4"
>
<button className="px-4 py-2 text-sm font-medium text-white/80 hover:text-white transition-colors">
</button>
<motion.button
className="px-6 py-2 text-sm font-bold bg-gradient-to-r from-cyan-500 via-fuchsia-500 to-emerald-500 rounded-full text-white hover:shadow-lg hover:shadow-cyan-500/50 transition-all"
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 3,
repeat: Infinity,
ease: "linear"
}}
style={{
backgroundSize: "200% auto",
}}
>
</motion.button>
</motion.div>
</div>
</div>
</nav>
{/* Hero Section */}
<section className="relative pt-32 pb-20 px-4 sm:px-6 lg:px-8 overflow-hidden">
<div className="absolute inset-0 bg-[radial-gradient(circle_at_50%_50%,rgba(6,182,212,0.2),transparent_50%)]"></div>
<div className="max-w-7xl mx-auto">
<motion.div
initial="initial"
animate="animate"
variants={{
initial: { opacity: 0 },
animate: {
opacity: 1,
transition: {
staggerChildren: 0.2
}
}
}}
className="text-center"
>
<motion.div
variants={animations.fadeInUp}
className="inline-flex items-center space-x-2 px-4 py-2 rounded-full bg-white/10 backdrop-blur-md border border-white/20 mb-8"
>
<Sparkles className="w-4 h-4 text-cyan-400" />
<span className="text-sm text-white/90">AI </span>
</motion.div>
<motion.h1
variants={animations.fadeInUp}
className="text-5xl sm:text-6xl lg:text-8xl font-black mb-6 leading-tight tracking-tight"
>
<motion.span
className="block mb-2"
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 4,
repeat: Infinity,
ease: "linear"
}}
style={{
background: "linear-gradient(90deg, #ffffff, #06b6d4, #10b981, #f472b6, #ffffff)",
backgroundSize: "200% auto",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
backgroundClip: "text",
filter: "drop-shadow(0 0 20px rgba(6,182,212,0.5))"
}}
>
IYKYKA
</motion.span>
<br />
<span className="bg-gradient-to-r from-cyan-400 via-emerald-400 to-fuchsia-400 bg-clip-text text-transparent animate-pulse drop-shadow-[0_0_15px_rgba(6,182,212,0.6)]">
</span>
</motion.h1>
<motion.p
variants={animations.fadeInUp}
className="text-xl sm:text-2xl text-white/80 max-w-3xl mx-auto mb-12 leading-relaxed"
>
AI가 , ,
<span className="text-cyan-300 font-semibold"> </span> .
</motion.p>
<motion.div
variants={animations.fadeInUp}
className="flex flex-col sm:flex-row gap-4 justify-center items-center"
>
<motion.button
className="group relative px-8 py-4 rounded-full text-white font-bold text-lg overflow-hidden"
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 3,
repeat: Infinity,
ease: "linear"
}}
style={{
background: "linear-gradient(90deg, #06b6d4, #10b981, #f472b6, #06b6d4)",
backgroundSize: "200% auto",
boxShadow: "0 0 30px rgba(6,182,212,0.5)"
}}
>
<span className="flex items-center space-x-2 relative z-10">
<span> </span>
<ArrowRight className="w-5 h-5 group-hover:translate-x-1 transition-transform" />
</span>
</motion.button>
<motion.button
className="px-8 py-4 rounded-full border-2 border-cyan-500/50 text-white font-bold text-lg hover:bg-cyan-500/10 hover:border-fuchsia-400 hover:shadow-[0_0_20px_rgba(244,114,182,0.5)] backdrop-blur-sm transition-all"
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
>
</motion.button>
</motion.div>
</motion.div>
</div>
{/* Floating Elements */}
<motion.div
animate={{
y: [0, -20, 0],
rotate: [0, 5, 0]
}}
transition={{
duration: 6,
repeat: Infinity,
ease: "easeInOut"
}}
className="absolute top-40 left-10 w-20 h-20 bg-gradient-to-br from-cyan-500/40 to-fuchsia-500/40 rounded-full blur-xl"
/>
<motion.div
animate={{
y: [0, 20, 0],
rotate: [0, -5, 0]
}}
transition={{
duration: 8,
repeat: Infinity,
ease: "easeInOut"
}}
className="absolute bottom-20 right-20 w-32 h-32 bg-gradient-to-br from-emerald-500/40 to-cyan-500/40 rounded-full blur-xl"
/>
</section>
{/* Features Grid */}
<section className="py-20 px-4 sm:px-6 lg:px-8">
<div className="max-w-7xl mx-auto">
<motion.div
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.6 }}
className="text-center mb-16"
>
<h2 className="text-4xl sm:text-5xl font-black mb-4">
<motion.span
className="block"
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 5,
repeat: Infinity,
ease: "linear"
}}
style={{
background: "linear-gradient(90deg, #06b6d4, #10b981, #f472b6, #06b6d4)",
backgroundSize: "200% auto",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
backgroundClip: "text",
}}
>
</motion.span>
</h2>
<p className="text-xl text-white/70 max-w-2xl mx-auto">
AI
</p>
</motion.div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{features.map((feature, index) => {
const Icon = feature.icon;
return (
<motion.div
key={index}
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5, delay: index * 0.1 }}
className="group relative p-6 rounded-2xl bg-white/5 backdrop-blur-md border border-white/10 overflow-hidden group-hover:bg-white/10 group-hover:border-cyan-500/50 group-hover:shadow-[0_0_30px_rgba(6,182,212,0.5)] transition-all"
>
<div className={`absolute inset-0 bg-gradient-to-br ${feature.color} opacity-0 group-hover:opacity-10 transition-opacity`}></div>
<div className={`relative w-12 h-12 rounded-xl bg-gradient-to-br ${feature.color} p-3 mb-4`}>
<Icon className="w-6 h-6 text-white" />
</div>
<h3 className="text-xl font-semibold text-white mb-2">{feature.title}</h3>
<p className="text-white/70 leading-relaxed">{feature.description}</p>
</motion.div>
);
})}
</div>
</div>
</section>
{/* AI Automation Section */}
<section className="py-20 px-4 sm:px-6 lg:px-8 relative">
<div className="absolute inset-0 bg-gradient-to-r from-cyan-950/50 to-emerald-950/50"></div>
<div className="max-w-7xl mx-auto relative">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<motion.div
initial={{ opacity: 0, x: -50 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.6 }}
>
<div className="inline-flex items-center space-x-2 px-4 py-2 rounded-full bg-white/10 backdrop-blur-md border border-white/20 mb-6">
<Bot className="w-5 h-5 text-cyan-400" />
<span className="text-sm text-white/90">AI </span>
</div>
<h2 className="text-4xl sm:text-5xl font-bold mb-6">
<span className="bg-gradient-to-r from-white to-cyan-200 bg-clip-text text-transparent">
</span>
<br />
<motion.span
className="block"
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 4,
repeat: Infinity,
ease: "linear"
}}
style={{
background: "linear-gradient(90deg, #06b6d4, #10b981, #f472b6, #06b6d4)",
backgroundSize: "200% auto",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
backgroundClip: "text",
}}
>
</motion.span>
</h2>
<p className="text-xl text-white/80 mb-8 leading-relaxed">
AI가 , ,
. .
</p>
<ul className="space-y-4">
{[
"지능형 메시지 자동 응답",
"스마트 일정 관리 및 알림",
"컨텍스트 기반 작업 자동화",
"다국어 실시간 번역",
"의미 분석 및 우선순위 설정"
].map((item, index) => (
<motion.li
key={index}
initial={{ opacity: 0, x: -20 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5, delay: index * 0.1 }}
className="flex items-center space-x-3"
>
<CheckCircle2 className="w-6 h-6 text-emerald-400 flex-shrink-0" />
<span className="text-white/90 text-lg">{item}</span>
</motion.li>
))}
</ul>
</motion.div>
<motion.div
initial={{ opacity: 0, x: 50 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.6 }}
className="relative"
>
<div className="relative p-8 rounded-3xl bg-gradient-to-br from-cyan-500/20 to-emerald-500/20 backdrop-blur-md border border-white/20">
<div className="absolute inset-0 bg-[radial-gradient(circle_at_50%_50%,rgba(6,182,212,0.3),transparent_70%)] rounded-3xl"></div>
<div className="relative space-y-4">
{[1, 2, 3].map((i) => (
<motion.div
key={i}
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: i * 0.2 }}
className="p-4 rounded-xl bg-white/10 backdrop-blur-sm border border-white/20"
>
<div className="flex items-center space-x-3 mb-2">
<div className="w-8 h-8 rounded-full bg-gradient-to-br from-cyan-400 to-emerald-400"></div>
<div className="flex-1 h-4 bg-white/20 rounded w-24"></div>
</div>
<div className="space-y-2">
<div className="h-3 bg-white/20 rounded w-full"></div>
<div className="h-3 bg-white/20 rounded w-3/4"></div>
</div>
</motion.div>
))}
</div>
</div>
</motion.div>
</div>
</div>
</section>
{/* CTA Section */}
<section className="py-20 px-4 sm:px-6 lg:px-8">
<div className="max-w-4xl mx-auto text-center">
<motion.div
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.6 }}
className="relative p-12 rounded-3xl overflow-hidden"
style={{
background: "linear-gradient(135deg, #06b6d4, #10b981, #f472b6)",
backgroundSize: "200% 200%",
}}
>
<motion.div
animate={{
backgroundPosition: ["0% 0%", "100% 100%", "0% 0%"],
}}
transition={{
duration: 5,
repeat: Infinity,
ease: "linear"
}}
className="absolute inset-0"
style={{
background: "linear-gradient(135deg, #06b6d4, #10b981, #f472b6)",
backgroundSize: "200% 200%",
}}
/>
<div className="absolute inset-0 bg-[radial-gradient(circle_at_50%_50%,rgba(255,255,255,0.1),transparent_70%)]"></div>
<div className="relative z-10">
<h2 className="text-4xl sm:text-5xl font-bold text-white mb-6">
</h2>
<p className="text-xl text-white/90 mb-8 max-w-2xl mx-auto relative z-10">
IYKYKA와 AI .
.
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<motion.button
className="px-8 py-4 bg-white rounded-full font-bold text-lg hover:shadow-2xl transition-all relative z-10"
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
style={{
color: "#06b6d4"
}}
>
</motion.button>
<button className="px-8 py-4 bg-white/10 backdrop-blur-md border-2 border-white/30 text-white rounded-full font-semibold text-lg hover:bg-white/20 transition-all">
</button>
</div>
</div>
</motion.div>
</div>
</section>
{/* Footer */}
<footer className="py-12 px-4 sm:px-6 lg:px-8 border-t border-white/10">
<div className="max-w-7xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<div className="flex items-center space-x-2 mb-4">
<MessageSquare className="w-6 h-6 text-cyan-400 drop-shadow-[0_0_8px_rgba(6,182,212,0.8)]" />
<motion.span
className="text-lg font-black tracking-tight"
animate={{
backgroundPosition: ["0%", "100%", "0%"],
}}
transition={{
duration: 4,
repeat: Infinity,
ease: "linear"
}}
style={{
background: "linear-gradient(90deg, #06b6d4, #10b981, #f472b6, #06b6d4)",
backgroundSize: "200% auto",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
backgroundClip: "text",
}}
>
IYKYKA
</motion.span>
</div>
<p className="text-white/60 text-sm">
AI .
</p>
</div>
<div>
<h4 className="text-white font-semibold mb-4"></h4>
<ul className="space-y-2 text-white/60 text-sm">
<li><a href="#" className="hover:text-white transition-colors"></a></li>
<li><a href="#" className="hover:text-white transition-colors"></a></li>
<li><a href="#" className="hover:text-white transition-colors"></a></li>
</ul>
</div>
<div>
<h4 className="text-white font-semibold mb-4"></h4>
<ul className="space-y-2 text-white/60 text-sm">
<li><a href="#" className="hover:text-white transition-colors"></a></li>
<li><a href="#" className="hover:text-white transition-colors"></a></li>
<li><a href="#" className="hover:text-white transition-colors"></a></li>
</ul>
</div>
<div>
<h4 className="text-white font-semibold mb-4"></h4>
<ul className="space-y-2 text-white/60 text-sm">
<li><a href="#" className="hover:text-white transition-colors"></a></li>
<li><a href="#" className="hover:text-white transition-colors"></a></li>
<li><a href="#" className="hover:text-white transition-colors">API </a></li>
</ul>
</div>
</div>
<div className="pt-8 border-t border-white/10 text-center text-white/60 text-sm">
<p>&copy; 2024 IYKYKA. All rights reserved.</p>
</div>
</div>
</footer>
</div>
);
}

18
eslint.config.mjs Normal file
View File

@ -0,0 +1,18 @@
import { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTs from "eslint-config-next/typescript";
const eslintConfig = defineConfig([
...nextVitals,
...nextTs,
// Override default ignores of eslint-config-next.
globalIgnores([
// Default ignores of eslint-config-next:
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
]),
]);
export default eslintConfig;

7
next.config.ts Normal file
View File

@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;

6603
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

28
package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "iykyka",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"framer-motion": "^12.24.12",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}

7
postcss.config.mjs Normal file
View File

@ -0,0 +1,7 @@
const config = {
plugins: {
"@tailwindcss/postcss": {},
},
};
export default config;

1
public/file.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 391 B

1
public/globe.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

1
public/next.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

1
public/vercel.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 128 B

1
public/window.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>

After

Width:  |  Height:  |  Size: 385 B

34
tsconfig.json Normal file
View File

@ -0,0 +1,34 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
}