// src/app/page.tsx (랜딩 페이지) import React from "react"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Factory, Battery, LineChart, Settings, ChevronRight, Lightbulb, BarChart3, } from "lucide-react"; import { redirect } from 'next/navigation' export default function Home() { //최초 페이지 접근시 로그인 페이지로 리다이렉트 redirect('/login') // 산업 분야별 솔루션 데이터 const industries = [ { title: "제조업", icon: , description: "생산 공정 최적화와 에너지 효율 향상으로 제조 경쟁력 강화", features: ["실시간 에너지 모니터링", "설비별 효율 분석", "원단위 관리"], }, { title: "화학/정유", icon: , description: "공정 에너지 최적화 및 안전한 운영 지원", features: ["공정 최적화", "에너지 회수 분석", "규제 대응"], }, { title: "반도체/디스플레이", icon: , description: "클린룸 및 유틸리티 시스템의 효율적 운영", features: ["클린룸 에너지 관리", "유틸리티 최적화", "품질 연계 분석"], }, ]; // 주요 기능 데이터 const features = [ { icon: , title: "실시간 모니터링", description: "설비와 에너지 사용량을 실시간으로 모니터링", }, { icon: , title: "데이터 분석", description: "AI 기반 에너지 사용 패턴 분석 및 최적화", }, { icon: , title: "절감 방안 도출", description: "맞춤형 에너지 절감 방안 제시", }, ]; return (
{/* Hero Section */}

Factory Energy Management System

최첨단 AI 기술로 구현하는 스마트 에너지 관리 시스템으로 비용 절감과 효율성을 극대화하세요

{/* Features Section */}

주요 기능

스마트한 에너지 관리를 위한 핵심 기능을 제공합니다

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Industries Section */}

산업별 맞춤 솔루션

다양한 산업 분야의 특성을 고려한 최적화된 솔루션을 제공합니다

{industries.map((industry, index) => (
{industry.icon}

{industry.title}

{industry.description}

    {industry.features.map((feature, idx) => (
  • {feature}
  • ))}
))}
{/* Benefits Section */}

도입 효과

FEMS 도입을 통해 기대할 수 있는 핵심 가치

{[ { title: "에너지 비용 절감", value: "15~25%", description: "연간 에너지 비용 절감", }, { title: "설비 효율 개선", value: "20%", description: "설비 운영 효율 향상", }, { title: "탄소 배출 감축", value: "30%", description: "온실가스 배출량 감축", }, { title: "투자비 회수", value: "2년", description: "평균 투자비 회수 기간", }, ].map((benefit, index) => (
{benefit.value}

{benefit.title}

{benefit.description}

))}
{/* CTA Section */}

지금 바로 시작하세요

스마트한 에너지 관리의 시작, FEMS가 함께합니다

{/* Footer */}
); }