Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VCCI-News
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Văn Hoàng
VCCI-News
Commits
76eb5cc9
Commit
76eb5cc9
authored
Nov 02, 2025
by
Phạm Quang Bảo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update/folder page
parent
98dbfa8e
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
23 additions
and
6 deletions
+23
-6
page.tsx
src/app/(main)/dai-dien-gioi-chu/page.tsx
+0
-0
page.tsx
src/app/(main)/gioi-thieu/page.tsx
+13
-0
page.tsx
src/app/(main)/hoat-dong/page.tsx
+0
-0
page.tsx
src/app/(main)/hoi-vien/page.tsx
+0
-0
page.tsx
src/app/(main)/thong-tin-truyen-thong/page.tsx
+0
-0
page.tsx
src/app/(main)/trade-promotion/page.tsx
+0
-0
page.tsx
src/app/(main)/xuat-xu-hang-hoa/page.tsx
+0
-0
page.tsx
src/app/(main)/xuc-tien-thuong-mai/page.tsx
+0
-0
MenuItem.tsx
src/components/ui/layout/MenuItem.tsx
+2
-2
header.tsx
src/components/ui/layout/header.tsx
+8
-4
No files found.
src/app/(main)/
about
/page.tsx
→
src/app/(main)/
dai-dien-gioi-chu
/page.tsx
View file @
76eb5cc9
File moved
src/app/(main)/gioi-thieu/page.tsx
0 → 100644
View file @
76eb5cc9
const
Page
=
()
=>
{
return
(
<
div
className=
"container"
>
<
div
className=
"flex p-2 border border-gray-300"
>
<
p
className=
"p-3"
>
Về VCCI-HCM
</
p
>
<
p
className=
"p-3"
>
Chức năng và Nhiệm vụ
</
p
>
<
p
className=
"p-3"
>
Sơ đồ tổ chức
</
p
>
<
p
className=
"p-3"
>
Dịch vụ cung cấp
</
p
>
</
div
>
</
div
>
);
};
export
default
Page
;
\ No newline at end of file
src/app/(main)/
activities
/page.tsx
→
src/app/(main)/
hoat-dong
/page.tsx
View file @
76eb5cc9
File moved
src/app/(main)/
communications
/page.tsx
→
src/app/(main)/
hoi-vien
/page.tsx
View file @
76eb5cc9
File moved
src/app/(main)/
members
/page.tsx
→
src/app/(main)/
thong-tin-truyen-thong
/page.tsx
View file @
76eb5cc9
File moved
src/app/(main)/trade-promotion/page.tsx
deleted
100644 → 0
View file @
98dbfa8e
src/app/(main)/
product-origin
/page.tsx
→
src/app/(main)/
xuat-xu-hang-hoa
/page.tsx
View file @
76eb5cc9
File moved
src/app/(main)/
representatives
/page.tsx
→
src/app/(main)/
xuc-tien-thuong-mai
/page.tsx
View file @
76eb5cc9
File moved
src/components/ui/layout/MenuItem.tsx
View file @
76eb5cc9
const
MenuItem
=
({
title
,
items
}:
{
title
:
string
;
items
:
string
[]
})
=>
(
const
MenuItem
=
({
title
,
items
,
link
}:
{
title
:
string
;
items
:
string
[];
link
?:
string
})
=>
(
<
div
className=
"group relative"
>
<
a
className=
"px-3 py-5 text-[16px] font-[600] text-[#124588] hover:text-[#E8C518] transition block"
href=
"#"
href=
{
`${link}`
}
>
{
title
}
</
a
>
...
...
src/components/ui/layout/header.tsx
View file @
76eb5cc9
...
...
@@ -73,6 +73,7 @@ function Header() {
{
/* Dùng component MenuItem để gọn */
}
<
MenuItem
title=
"Giới thiệu"
link=
"gioi-thieu"
items=
{
[
"Về VCCI-HCM"
,
"Chức Năng Và Nhiệm Vụ"
,
...
...
@@ -82,6 +83,7 @@ function Header() {
/>
<
MenuItem
title=
"Hội viên"
link=
"hoi-vien"
items=
{
[
"Lợi Ích Của Hội Viên VCCI"
,
"Đăng Ký Hội Viên"
,
...
...
@@ -92,6 +94,7 @@ function Header() {
<
MenuItem
title=
"Hoạt động"
items=
{
[
"Sự Kiện"
,
"Đào Tạo"
]
}
/>
<
MenuItem
title=
"Xuất Xứ Hàng Hóa"
link=
"xuat-xu-hang-hoa"
items=
{
[
"Định Nghĩa Chung"
,
"Mục Đích Của C/O"
,
...
...
@@ -108,7 +111,7 @@ function Header() {
<
div
className=
"group relative"
>
<
a
className=
"px-3 py-5 text-[16px] font-[600] text-[#124588] hover:text-[#E8C518] transition block"
href=
"#"
href=
{
`${"/dai-dien-gioi-chu"}`
}
>
Đại Diện Giới Chủ
</
a
>
...
...
@@ -146,6 +149,7 @@ function Header() {
<
MenuItem
title=
"Xúc tiến thương mại"
link=
"xuc-tien-thuong-mai"
items=
{
[
"Hồ Sơ Thị Trường"
,
"Môi Trường Kinh Doanh"
,
...
...
@@ -155,6 +159,7 @@ function Header() {
/>
<
MenuItem
title=
"Thông tin truyền thông"
link=
"thong-tin-truyen-thong"
items=
{
[
"Tin VCCI"
,
"Tin Kinh Tế"
,
...
...
@@ -179,9 +184,8 @@ function Header() {
{
/* Mobile Menu */
}
<
div
className=
{
`lg:hidden bg-white shadow-lg transition-all duration-300 overflow-hidden ${
toggleMenu ? "max-h-96 opacity-100" : "max-h-0 opacity-0"
}`
}
className=
{
`lg:hidden bg-white shadow-lg transition-all duration-300 overflow-hidden ${toggleMenu ? "max-h-96 opacity-100" : "max-h-0 opacity-0"
}`
}
>
{
[
"Giới thiệu"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment