File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 66
66
- name : Upload artifact
67
67
uses : actions/upload-pages-artifact@v3
68
68
with :
69
- path : ./.next/server/app
69
+ path : ./out
70
70
71
71
deploy :
72
72
environment :
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ const nextConfig = {
19
19
outputFileTracingIncludes : {
20
20
'/**/*' : [ './src/app/**/*.mdx' ] ,
21
21
} ,
22
+ output : 'export' ,
23
+ images : {
24
+ unoptimized : true ,
25
+ } ,
22
26
}
23
27
24
28
export default withSearch ( withMDX ( nextConfig ) )
Original file line number Diff line number Diff line change @@ -118,16 +118,14 @@ function SmallPrint() {
118
118
return (
119
119
< div className = "flex flex-col items-center justify-between gap-5 border-t border-zinc-900/5 pt-8 sm:flex-row dark:border-white/5" >
120
120
< p className = "text-xs text-zinc-600 dark:text-zinc-400" >
121
- © Copyright { new Date ( ) . getFullYear ( ) } . All rights reserved.
121
+ © Copyright { new Date ( ) . getFullYear ( ) } . Licensed under AGPLv3 &
122
+ Tailwind Plus License .
122
123
</ p >
123
124
< div className = "flex gap-4" >
124
- < SocialLink href = "# " icon = { XIcon } >
125
- Follow us on X
125
+ < SocialLink href = "https://github.com/Drop-OSS " icon = { GitHubIcon } >
126
+ Check out our GitHub
126
127
</ SocialLink >
127
- < SocialLink href = "#" icon = { GitHubIcon } >
128
- Follow us on GitHub
129
- </ SocialLink >
130
- < SocialLink href = "#" icon = { DiscordIcon } >
128
+ < SocialLink href = "https://discord.gg/ACq4qZp4a9" icon = { DiscordIcon } >
131
129
Join our Discord server
132
130
</ SocialLink >
133
131
</ div >
You can’t perform that action at this time.
0 commit comments