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
53828441
Commit
53828441
authored
Oct 31, 2025
by
Phạm Quang Bảo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix/conflic
parent
748177e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
15 deletions
+11
-15
layout.tsx
src/app/(main)/layout.tsx
+0
-15
layout.tsx
src/app/layout.tsx
+11
-0
No files found.
src/app/(main)/layout.tsx
deleted
100644 → 0
View file @
748177e8
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 @
53828441
...
...
@@ -5,6 +5,16 @@ import { Providers } from "./_providers";
import
React
from
"react"
;
import
Header
from
"@/components/ui/layout/header"
;
const
geistSans
=
Geist
({
variable
:
"--font-geist-sans"
,
subsets
:
[
"latin"
],
});
const
geistMono
=
Geist_Mono
({
variable
:
"--font-geist-mono"
,
subsets
:
[
"latin"
],
});
export
const
metadata
:
Metadata
=
{
title
:
"Create Next App"
,
description
:
"Generated by create next app"
,
...
...
@@ -18,6 +28,7 @@ export default function RootLayout({
return
(
<
html
lang=
"en"
>
<
body
className=
{
`${geistSans.variable} ${geistMono.variable} antialiased`
}
>
<
Providers
>
<
Header
/>
...
...
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