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
f2c48aff
Commit
f2c48aff
authored
Oct 31, 2025
by
Phạm Quang Bảo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update/home_page
parent
a9a4088f
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
280 additions
and
40 deletions
+280
-40
layout.tsx
src/app/(main)/layout.tsx
+0
-0
page.tsx
src/app/(main)/page.tsx
+0
-0
page.tsx
src/app/page.tsx
+263
-40
index.ts
src/components/ui/index.ts
+1
-0
spinner.tsx
src/components/ui/spinner.tsx
+16
-0
No files found.
src/app/(main)/layout.tsx
0 → 100644
View file @
f2c48aff
src/app/(main)/page.tsx
0 → 100644
View file @
f2c48aff
src/app/page.tsx
View file @
f2c48aff
This diff is collapsed.
Click to expand it.
src/components/ui/index.ts
View file @
f2c48aff
...
...
@@ -5,3 +5,4 @@ export { Badge } from './badge'
export
{
Card
}
from
'./card'
export
{
Icons
}
from
'./icons'
export
{
cn
}
from
'./utils'
export
{
Spinner
}
from
'./spinner'
src/components/ui/spinner.tsx
0 → 100644
View file @
f2c48aff
import
{
LoaderIcon
}
from
"lucide-react"
import
{
cn
}
from
"@/lib/utils"
function
Spinner
({
className
,
...
props
}:
React
.
ComponentProps
<
"svg"
>
)
{
return
(
<
LoaderIcon
role=
"status"
aria
-
label=
"Loading"
className=
{
cn
(
"size-4 animate-spin"
,
className
)
}
{
...
props
}
/>
)
}
export
{
Spinner
}
\ No newline at end of file
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