Files
bio_frontend/pages/about.vue
2025-08-08 13:11:33 +09:00

277 lines
5.7 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="about">
<section class="hero">
<h1>About Us</h1>
<p class="subtitle">혁신적인 솔루션으로 미래를 만들어갑니다</p>
</section>
<section class="mission">
<h2>Our Mission</h2>
<p>
우리는 최신 기술을 활용하여 사용자 중심의 혁신적인 제품을 개발하고,
나은 디지털 경험을 제공하는 것을 목표로 합니다.
</p>
</section>
<section class="values">
<h2>Our Values</h2>
<div class="values-grid">
<div class="value-card">
<h3>혁신</h3>
<p>끊임없는 혁신을 통해 새로운 가치를 창출합니다</p>
</div>
<div class="value-card">
<h3>품질</h3>
<p>최고의 품질을 위해 세심한 주의를 기울입니다</p>
</div>
<div class="value-card">
<h3>협력</h3>
<p>팀워크와 협력을 통해 성과를 달성합니다</p>
</div>
<div class="value-card">
<h3>성장</h3>
<p>지속적인 학습과 성장을 추구합니다</p>
</div>
</div>
</section>
<section class="team">
<h2>Our Team</h2>
<div class="team-grid">
<div class="team-member">
<div class="member-avatar">
<span>👨💻</span>
</div>
<h3>김개발</h3>
<p class="position">Frontend Developer</p>
<p>
Vue.js와 Nuxt.js 전문가로 사용자 경험에 중점을 개발을 담당합니다.
</p>
</div>
<div class="team-member">
<div class="member-avatar">
<span>👩💻</span>
</div>
<h3>이디자인</h3>
<p class="position">UI/UX Designer</p>
<p>사용자 중심의 직관적이고 아름다운 인터페이스를 설계합니다.</p>
</div>
<div class="team-member">
<div class="member-avatar">
<span>👨🔧</span>
</div>
<h3>박백엔드</h3>
<p class="position">Backend Developer</p>
<p>안정적이고 확장 가능한 서버 아키텍처를 구축합니다.</p>
</div>
</div>
</section>
<section class="contact">
<h2>Contact Us</h2>
<p>궁금한 점이 있으시면 언제든 연락주세요!</p>
<div class="contact-info">
<p>📧 Email: contact@example.com</p>
<p>📱 Phone: 02-1234-5678</p>
<p>📍 Address: 서울특별시 강남구 테헤란로 123</p>
</div>
</section>
</div>
</template>
<script setup lang="ts">
// 페이지 메타데이터 설정
definePageMeta({
title: "About",
description: "우리 팀과 미션에 대해 알아보세요",
});
// SEO 최적화
useHead({
title: "About Us - Nuxt.js App",
meta: [
{
name: "description",
content: "혁신적인 솔루션으로 미래를 만들어가는 우리 팀을 소개합니다.",
},
{ property: "og:title", content: "About Us - Nuxt.js App" },
{
property: "og:description",
content: "혁신적인 솔루션으로 미래를 만들어가는 우리 팀을 소개합니다.",
},
],
});
</script>
<style scoped>
.about {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.hero {
text-align: center;
padding: 3rem 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 12px;
margin-bottom: 3rem;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
color: white;
}
.subtitle {
font-size: 1.2rem;
opacity: 0.9;
}
section {
margin-bottom: 4rem;
}
h2 {
color: #333;
font-size: 2rem;
margin-bottom: 1.5rem;
text-align: center;
}
.mission {
text-align: center;
padding: 2rem;
background: #f8f9fa;
border-radius: 8px;
}
.mission p {
font-size: 1.1rem;
line-height: 1.6;
color: #666;
max-width: 800px;
margin: 0 auto;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.value-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease;
}
.value-card:hover {
transform: translateY(-5px);
}
.value-card h3 {
color: #00dc82;
margin-bottom: 1rem;
font-size: 1.3rem;
}
.value-card p {
color: #666;
line-height: 1.5;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.team-member {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease;
}
.team-member:hover {
transform: translateY(-5px);
}
.member-avatar {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #00dc82, #00b894);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-size: 2rem;
}
.team-member h3 {
color: #333;
margin-bottom: 0.5rem;
}
.position {
color: #00dc82;
font-weight: bold;
margin-bottom: 1rem;
}
.team-member p:last-child {
color: #666;
line-height: 1.5;
}
.contact {
text-align: center;
padding: 2rem;
background: #f8f9fa;
border-radius: 8px;
}
.contact p {
font-size: 1.1rem;
margin-bottom: 1rem;
color: #666;
}
.contact-info {
margin-top: 2rem;
}
.contact-info p {
margin-bottom: 0.5rem;
font-size: 1rem;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.values-grid,
.team-grid {
grid-template-columns: 1fr;
}
.hero,
.mission,
.contact {
padding: 1.5rem;
}
}
</style>