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
6acd11e7
Commit
6acd11e7
authored
Oct 31, 2025
by
Vũ Đình Nguyên
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
first commit
parent
a9a4088f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
+15
-10
page.tsx
src/app/(main)/(home)/page.tsx
+0
-0
layout.tsx
src/app/(main)/layout.tsx
+15
-0
layout.tsx
src/app/layout.tsx
+0
-10
No files found.
src/app/page.tsx
→
src/app/
(main)/(home)/
page.tsx
View file @
6acd11e7
File moved
src/app/(main)/layout.tsx
0 → 100644
View file @
6acd11e7
import
type
{
Metadata
}
from
"next"
;
import
React
from
"react"
;
export
const
metadata
:
Metadata
=
{
title
:
"Create Next App"
,
description
:
"Generated by create next app"
,
};
export
default
function
RootLayout
({
children
,
}:
Readonly
<
{
children
:
React
.
ReactNode
;
}
>
)
{
return
<
main
className=
"w-full"
>
{
children
}
</
main
>;
}
src/app/layout.tsx
View file @
6acd11e7
import
type
{
Metadata
}
from
"next"
;
import
type
{
Metadata
}
from
"next"
;
import
{
Geist
,
Geist_Mono
}
from
"next/font/google"
;
import
'./styles.css'
import
'./styles.css'
import
{
Providers
}
from
'./_providers'
import
{
Providers
}
from
'./_providers'
import
React
from
'react'
import
React
from
'react'
const
geistSans
=
Geist
({
variable
:
"--font-geist-sans"
,
subsets
:
[
"latin"
],
});
const
geistMono
=
Geist_Mono
({
variable
:
"--font-geist-mono"
,
subsets
:
[
"latin"
],
});
export
const
metadata
:
Metadata
=
{
export
const
metadata
:
Metadata
=
{
title
:
"Create Next App"
,
title
:
"Create Next App"
,
...
@@ -28,7 +19,6 @@ export default function RootLayout({
...
@@ -28,7 +19,6 @@ export default function RootLayout({
return
(
return
(
<
html
lang=
"en"
>
<
html
lang=
"en"
>
<
body
<
body
className=
{
`${geistSans.variable} ${geistMono.variable} antialiased`
}
>
>
<
Providers
>
{
children
}
</
Providers
>
<
Providers
>
{
children
}
</
Providers
>
</
body
>
</
body
>
...
...
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