diff --git a/frontend/spec-trackr-app/src/sp_com.jsx b/frontend/spec-trackr-app/src/sp_com.jsx index e7872e6b1..c96536278 100644 --- a/frontend/spec-trackr-app/src/sp_com.jsx +++ b/frontend/spec-trackr-app/src/sp_com.jsx @@ -171,20 +171,8 @@ const SpCom = ({ onCompanyTabClick }) => { - {/* 버튼: 100% 가로, 반반, 검정/흰색 */} - {/* */} - - - -

SpecTrackr 대시보드

- - - - - 채용공고 검색 - - - 스펙 검색 - - - - -

채용공고 검색

-

- 다양한 취업 사이트의 채용공고를 한 곳에서 확인하고 비교할 수 있습니다. 원하는 직무나 회사를 검색해보세요. -

- - {/* 여기에 채용공고 검색 기능 구현 */} -
- 채용공고 검색 기능이 여기에 구현됩니다. -
-
- - -

스펙 검색

-

- 실제 합격자 자소서와 스펙 사례를 기반으로 현실적인 준비 방법을 확인할 수 있습니다. 관심 있는 직무나 회사를 - 검색해보세요. -

- - {/* 여기에 스펙 검색 기능 구현 */} -
- 스펙 검색 기능이 여기에 구현됩니다. -
-
-
- - - ) -} diff --git a/frontend/spectrackr-main/app/page.tsx b/frontend/spectrackr-main/app/page.tsx index 88be576a5..456462307 100644 --- a/frontend/spectrackr-main/app/page.tsx +++ b/frontend/spectrackr-main/app/page.tsx @@ -1,234 +1,3 @@ -// "use client" - -// import type React from "react" -// import { useRef, useState, useEffect } from "react" -// import { Canvas, useFrame } from "@react-three/fiber" -// import { OrbitControls, PerspectiveCamera } from "@react-three/drei" -// import { Button } from "@/components/ui/button" -// import { motion } from "framer-motion" -// import { ChevronRight, Search, BarChart2, Briefcase, GraduationCap } from "lucide-react" -// import { useRouter } from "next/navigation" -// import * as THREE from "three" -// import { ThemeProvider } from "@/components/theme-provider" -// import { ThemeToggle } from "@/components/theme-toggle" - -// export default function Home() { -// return ( -// -// -// -// ) -// } - -// function HomePage() { -// const router = useRouter() -// const [mousePosition, setMousePosition] = useState({ x: 0, y: 0 }) - -// useEffect(() => { -// const handleMouseMove = (e: MouseEvent) => { -// setMousePosition({ -// x: (e.clientX / window.innerWidth) * 2 - 1, -// y: -(e.clientY / window.innerHeight) * 2 + 1, -// }) -// } - -// window.addEventListener("mousemove", handleMouseMove) -// return () => window.removeEventListener("mousemove", handleMouseMove) -// }, []) - -// return ( -//
-// {/* 3D Background - Fixed positioning and lower z-index */} -//
-// -// -// -// -// -// -// -//
- -// {/* Content - Higher z-index to appear above 3D background */} -//
-//
-//
-// -//
-//
-// -//
-//

-// SpecTrackr -//

-//
-// -//
- -// -// -// -//
- -//
-// -//

-// 의생명융합공학부 학생들의{" "} -// -// 진로 탐색 -// -// 을 위한 플랫폼 -//

- -//

-// 다양한 분야로의 진출 가능성을 연결하고, 채용 정보와 직무별 필수 역량을 한눈에 볼 수 있도록 지원합니다. -//

- -//
- -// -// } -// title="직무 정보 통합" -// description="다양한 취업 사이트의 채용공고를 한 곳에서 확인하고 비교할 수 있습니다." -// /> - -// } -// title="스펙 사례 제공" -// description="실제 합격자 자소서와 스펙 사례를 기반으로 현실적인 준비 방법을 제시합니다." -// /> - -// } -// title="맞춤형 탐색 기능" -// description="관심 직무 기반으로 필요한 역량과 준비 과정을 맞춤형으로 탐색할 수 있습니다." -// /> -// - -// -//
-//

-// "폭넓은 가능성 속에서, 각자의 길을 찾고 준비할 수 있도록 함께합니다." -//

- -// -//
-//
-//
- -//
-//

© {new Date().getFullYear()} SpecTrackr. 의생명융합공학부 학생들을 위한 진로 탐색 플랫폼.

-//
-//
-//
-//
-// ) -// } - -// function FeatureCard({ icon, title, description }: { icon: React.ReactNode; title: string; description: string }) { -// return ( -// -//
-// {icon} -//
-//

{title}

-//

{description}

-//
-// ) -// } - -// function Scene({ mousePosition }: { mousePosition: { x: number; y: number } }) { -// const particlesRef = useRef(null) - -// useFrame(() => { -// if (particlesRef.current) { -// particlesRef.current.rotation.y += 0.001 -// particlesRef.current.rotation.x = mousePosition.y * 0.05 -// particlesRef.current.rotation.z = mousePosition.x * 0.05 -// } -// }) - -// return ( -// <> -// -// {Array.from({ length: 50 }).map((_, i) => ( -// -// ))} -// -// -// ) -// } - -// function Particle({ index }: { index: number }) { -// const ref = useRef(null) - -// // Create a random position for each particle -// const position = [(Math.random() - 0.5) * 15, (Math.random() - 0.5) * 15, (Math.random() - 0.5) * 15] - -// // Random size for each particle -// const size = Math.random() * 0.03 + 0.01 - -// useFrame((state) => { -// if (ref.current) { -// // Slow oscillation based on time -// ref.current.position.y += Math.sin(state.clock.elapsedTime * 0.1 + index) * 0.001 -// ref.current.position.x += Math.cos(state.clock.elapsedTime * 0.1 + index) * 0.001 -// } -// }) - -// return ( -// -// -// -// -// ) -// } - "use client" import type React from "react" @@ -399,7 +168,6 @@ function Scene() { useFrame(() => { if (particlesRef.current) { particlesRef.current.rotation.y += 0.001 - // 마우스 위치에 따른 x, z 회전은 삭제 } })