Skip to content

Commit 62421a9

Browse files
committed
feat: update footer and fix build
1 parent 45a0932 commit 62421a9

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Upload artifact
6767
uses: actions/upload-pages-artifact@v3
6868
with:
69-
path: ./.next/server/app
69+
path: ./out
7070

7171
deploy:
7272
environment:

next.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ const nextConfig = {
1919
outputFileTracingIncludes: {
2020
'/**/*': ['./src/app/**/*.mdx'],
2121
},
22+
output: 'export',
23+
images: {
24+
unoptimized: true,
25+
},
2226
}
2327

2428
export default withSearch(withMDX(nextConfig))

src/components/Footer.tsx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,14 @@ function SmallPrint() {
118118
return (
119119
<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">
120120
<p className="text-xs text-zinc-600 dark:text-zinc-400">
121-
&copy; Copyright {new Date().getFullYear()}. All rights reserved.
121+
&copy; Copyright {new Date().getFullYear()}. Licensed under AGPLv3 &
122+
Tailwind Plus License.
122123
</p>
123124
<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
126127
</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}>
131129
Join our Discord server
132130
</SocialLink>
133131
</div>

0 commit comments

Comments
 (0)