Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
NextJs-Blog
Overview
Overview
Details
Activity
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
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Madhankumar
NextJs-Blog
Commits
9de61e99
Commit
9de61e99
authored
Nov 30, 2023
by
Vijay G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: header update
parent
04ac208e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
8 deletions
+23
-8
page.js
app/@header/page.js
+14
-0
layout.js
app/layout.js
+7
-3
page.js
app/page.js
+1
-4
index.js
context/index.js
+0
-0
jsconfig.json
jsconfig.json
+1
-1
No files found.
app/@header/page.js
0 → 100644
View file @
9de61e99
'use client'
;
import
Header
from
"@components/base/header"
;
import
{
useAppContext
}
from
"@context/index"
;
export
default
function
PageHeader
()
{
const
{
theme
,
setTheme
}
=
useAppContext
();
return
(
<
Header
name
=
"NewsBlog"
currentTheme
=
{
theme
}
onThemeChange
=
{
setTheme
}
/
>
)
}
\ No newline at end of file
app/layout.js
View file @
9de61e99
import
ThemeProvider
from
"
./context
"
;
import
ThemeProvider
from
"
@context/index
"
;
import
"./globals.css"
;
import
"./globals.css"
;
export
default
function
RootLayout
({
children
})
{
export
default
function
RootLayout
({
children
,
header
})
{
return
(
return
(
<
ThemeProvider
>
<
ThemeProvider
>
<
html
lang
=
"en"
>
<
html
lang
=
"en"
>
<
body
>
{
children
}
<
/body
>
{
console
.
log
(
"header"
,
header
)}
<
body
>
{
header
}
{
children
}
<
/body
>
<
/html
>
<
/html
>
<
/ThemeProvider
>
<
/ThemeProvider
>
);
);
...
...
app/page.js
View file @
9de61e99
import
BlogLists
from
"@components/top-level/blog-lists"
;
import
BlogLists
from
"@components/top-level/blog-lists"
;
import
Header
from
"@components/base/header"
;
import
{
getAllPosts
}
from
"@lib/posts"
;
import
{
getAllPosts
}
from
"@lib/posts"
;
import
{
useAppContext
}
from
"./context"
;
const
Home
=
()
=>
{
const
Home
=
()
=>
{
const
{
theme
,
setTheme
}
=
useAppContext
();
let
blogs
;
let
blogs
;
const
fetchAllBlogs
=
()
=>
{
const
fetchAllBlogs
=
()
=>
{
...
@@ -14,7 +12,6 @@ const Home = () => {
...
@@ -14,7 +12,6 @@ const Home = () => {
return
(
return
(
<
div
>
<
div
>
<
Header
name
=
"NewsBlog"
currentTheme
=
{
theme
}
onThemeChange
=
{
setTheme
}
/
>
<
BlogLists
<
BlogLists
title
=
{
blogs
?.
title
}
title
=
{
blogs
?.
title
}
description
=
{
blogs
?.
description
}
description
=
{
blogs
?.
description
}
...
...
app/
context/index.js
→
context/index.js
View file @
9de61e99
File moved
jsconfig.json
View file @
9de61e99
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
"@components/*"
:
[
"components/*"
],
"@components/*"
:
[
"components/*"
],
"@img/*"
:
[
"public/images/*"
],
"@img/*"
:
[
"public/images/*"
],
"@posts/*"
:
[
"posts/*"
],
"@posts/*"
:
[
"posts/*"
],
"@context/*"
:
[
"
app/
context/*"
],
"@context/*"
:
[
"context/*"
],
"@lib/*"
:
[
"lib/*"
]
"@lib/*"
:
[
"lib/*"
]
},
},
"experimentalDecorators"
:
true
"experimentalDecorators"
:
true
...
...
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