Skip to content

Commit 7ccdb3a

Browse files
committed
Overview draft
1 parent d527a26 commit 7ccdb3a

File tree

10 files changed

+5143
-57
lines changed

10 files changed

+5143
-57
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
.next
3+
.DS_Store

components/Footer.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ export default function Footer() {
55
return (
66
<footer className={styles.footer}>
77
<span>
8-
Maintained by{" "}
9-
<a target="_blank" href={SITE.sst} rel="noopener noreferrer">
10-
SST
11-
</a>
8+
Maintained by the OpenNext community
129
</span>
1310
<div>
1411
<a target="_blank" href={SITE.github} rel="noopener noreferrer">
@@ -17,9 +14,6 @@ export default function Footer() {
1714
<a target="_blank" href={SITE.discord} rel="noopener noreferrer">
1815
Discord
1916
</a>
20-
<a target="_blank" href={SITE.twitter} rel="noopener noreferrer">
21-
Twitter
22-
</a>
2317
</div>
2418
</footer>
2519
);

config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
interface Site {
22
sst: string;
3+
url: string;
34
title: string;
45
github: string;
56
discord: string;
6-
twitter: string;
77
description: string;
88
}
99

1010
export const SITE: Site = {
1111
title: "OpenNext",
1212
sst: "https://sst.dev",
13-
discord: "https://sst.dev/discord",
14-
twitter: "https://twitter.com/SST_dev",
15-
github: "https://github.com/serverless-stack/open-next",
16-
description: "Open source Next.js serverless adapter",
13+
url: "https://opennext.js.org",
14+
github: "https://github.com/opennextjs",
15+
discord: "https://discord.gg/opennextjs",
16+
description: "Open-source Next.js adapters",
1717
};

0 commit comments

Comments
 (0)