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
d3b8a857
Commit
d3b8a857
authored
Jan 04, 2024
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code changes
parent
f0939df5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
page.js
app/singleblog/[id]/page.js
+1
-2
index.js
components/base/header/index.js
+1
-1
index.js
context/index.js
+1
-1
No files found.
app/singleblog/[id]/page.js
View file @
d3b8a857
import
SingleBlog
from
"@components/top-level/single-blog"
;
import
Loading
from
"app/loading"
;
import
{
getPostById
}
from
"@lib/api"
;
const
SingleBlogApp
=
async
({
params
:
{
id
}
})
=>
{
const
blog
=
await
getPostById
(
"posts"
,
id
);
return
<
div
>
{
blog
?
<
SingleBlog
{...
blog
}
/> : <Loading /
>
}
<
/div
>
;
return
<
SingleBlog
{...
blog
}
/
>
;
};
export
default
SingleBlogApp
;
components/base/header/index.js
View file @
d3b8a857
...
...
@@ -41,7 +41,7 @@ function Header({
<
div
onClick
=
{
handleTheme
}
className
=
{
styles
.
themeLight
}
>
<
Icons
name
=
{
currentTheme
===
"light"
?
"
sun"
:
"moo
n"
}
name
=
{
currentTheme
===
"light"
?
"
moon"
:
"su
n"
}
size
=
"large"
/>
<
/div
>
...
...
context/index.js
View file @
d3b8a857
...
...
@@ -9,7 +9,7 @@ export const ThemeProvider = ({ children }) => {
const
[
theme
,
setTheme
]
=
useState
(
"light"
);
useEffect
(()
=>
{
const
storedTheme
=
localStorage
.
getItem
(
"theme"
)
||
"light"
;
const
storedTheme
=
localStorage
.
getItem
(
"theme"
);
setTheme
(
storedTheme
);
document
.
documentElement
.
setAttribute
(
"class"
,
storedTheme
);
},
[]);
...
...
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