import React, { useState, useEffect } from 'react'; import { Mail, Phone, MapPin, ChevronRight, Menu, X, ExternalLink } from 'lucide-react'; const App = () => { const [activeTab, setActiveTab] = useState('All'); const [isScrolled, setIsScrolled] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); // Handle scroll for navbar styling useEffect(() => { const handleScroll = () => { setIsScrolled(window.scrollY > 50); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const scrollTo = (id) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: 'smooth' }); } setMobileMenuOpen(false); }; const skills = [ "SketchUp", "3ds Max", "Revit", "Corona Render", "Vantage", "D5", "Lumion", "Adobe Suite", "Unreal Engine" ]; const experience = [ { role: "Intern Architecture", company: "Big Adeco", period: "2021 - 2025", desc: "Intern Architecture Concept, shop drawing, Rendering. Working with client after 3 month Intern." }, { role: "Urban Design & Landscape Design", company: "Assem and Clitus", period: "Freelance/Contract", desc: "Concept design for landscape architecture, Urban Plan. 3D idea concept, Visual concept, detail concept." }, { role: "Freelance Designer", company: "DOT & PLANT lab", period: "Remote", desc: "Interior Design, Exterior design, Landcape design, Urban Design, and join a lot of competition in the world." } ]; const portfolio = [ { id: 1, title: "Nhà Mát", category: "Urban Design", location: "Bạc Liêu", img: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=800" }, { id: 2, title: "Phong Nha Retreat", category: "Landscape", location: "Quảng Bình", img: "https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&q=80&w=800" }, { id: 3, title: "Lac House", category: "Exterior", location: "Long An", img: "https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&q=80&w=800" }, { id: 4, title: "Villa Himlam", category: "Interior", location: "Quận 7, TPHCM", img: "https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&q=80&w=800" }, { id: 5, title: "Khải Hằng Villa", category: "Exterior", location: "Thốt Nốt, Cần Thơ", img: "https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&q=80&w=800" }, { id: 6, title: "Vinhome Smart City", category: "Interior", location: "Hà Nội", img: "https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&q=80&w=800" }, { id: 7, title: "Trường House", category: "Exterior", location: "Tân Uyên, Bình Dương", img: "https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&q=80&w=800" }, { id: 8, title: "Nhà Phố KDC", category: "2D & BIM", location: "TPHCM", img: "https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&q=80&w=800" } ]; const categories = ['All', 'Urban Design', 'Exterior', 'Interior', 'Landscape', '2D & BIM']; const filteredPortfolio = activeTab === 'All' ? portfolio : portfolio.filter(item => item.category === activeTab); return (
{/* Navigation */} {/* Hero Section */}
{/* Abstract Background Elements */}

Không Gian Xanh

NGUYEN QUOC KIET

Urban Design • Architecture • Interior • Landscape

{/* About Section */}

Giới thiệu

Về Tôi

Xin chào, tôi là Nguyễn Quốc Kiệt, sinh năm 2003. Tôi đam mê kiến tạo những không gian sống kết nối hài hòa giữa con người và thiên nhiên. Định hướng của tôi là mang triết lý "Không Gian Xanh" vào từng đường nét kiến trúc và quy hoạch đô thị.

HỌC VẤN

Đại học UEH (ISCM)
Cử nhân Kiến trúc & Thiết kế Đô thị Thông minh

THPT Chu Văn An
Tỉnh An Giang

NGOẠI NGỮ

Tiếng Anh: IELTS 6.5

Tiếng Trung: HSK 3

Chuyên môn

Kỹ Năng

{skills.map((skill, index) => ( {skill} ))}
{/* Experience Section */}

Hành trình

Kinh Nghiệm Làm Việc

{experience.map((item, index) => (
{/* Timeline dot */}

{item.role}

{item.period}
{item.company}

{item.desc}

))}
{/* Portfolio Section */}

Dự án

Portfolio Của Tôi

{/* Filter Tabs */}
{categories.map((cat) => ( ))}
{/* Portfolio Grid */}
{filteredPortfolio.map((item) => (
{/* Fallback image style structure */}
{/* Overlay */}

{item.category}

{item.title}

{item.location}

))}
{/* Contact Section */}
{/* Background accent */}

Kết nối

Hãy Cùng Tạo Nên Những Dự Án Tuyệt Vời.

Tôi luôn sẵn sàng cho những thử thách mới trong lĩnh vực thiết kế kiến trúc, nội ngoại thất và quy hoạch cảnh quan. Hãy liên hệ với tôi để cùng trao đổi về ý tưởng của bạn.

Điện thoại

0583.234.700

Email

im.qoki254@gmail.com

Địa chỉ

Nhà Bè, TPHCM

{/* Minimalist Visual Element */}

Q/K

{/* Decorative brackets */}
{/* Footer */}
); }; export default App;