File tree Expand file tree Collapse file tree 4 files changed +32
-80
lines changed Expand file tree Collapse file tree 4 files changed +32
-80
lines changed Load Diff This file was deleted.
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import StackBuilder from "../_components/stack-builder" ;
1
+ import type { Metadata } from "next" ;
2
+ import { Suspense } from "react" ;
3
+ import StackBuilder from "./_components/stack-builder" ;
4
+
5
+ export const metadata : Metadata = {
6
+ title : "Stack Builder - Better-T-Stack" ,
7
+ description : "Interactive Ui to roll your own stack" ,
8
+ openGraph : {
9
+ title : "Stack Builder - Better-T-Stack" ,
10
+ description : "Interactive Ui to roll your own stack" ,
11
+ url : "https://better-t-stack.dev/new" ,
12
+ images : [
13
+ {
14
+ url : "https://r2.better-t-stack.dev/og.png" ,
15
+ width : 1200 ,
16
+ height : 630 ,
17
+ alt : "Better-T-Stack Stack Builder" ,
18
+ } ,
19
+ ] ,
20
+ } ,
21
+ twitter : {
22
+ card : "summary_large_image" ,
23
+ title : "Stack Builder - Better-T-Stack" ,
24
+ description : "Interactive Ui to roll your own stack" ,
25
+ images : [ "https://r2.better-t-stack.dev/og.png" ] ,
26
+ } ,
27
+ } ;
2
28
3
29
export default function FullScreenStackBuilder ( ) {
4
30
return (
5
- < div className = "grid h-[calc(100vh-64px)] w-full flex-1 grid-cols-1 overflow-hidden" >
6
- < StackBuilder />
7
- </ div >
31
+ < Suspense >
32
+ < div className = "grid h-[calc(100vh-64px)] w-full flex-1 grid-cols-1 overflow-hidden" >
33
+ < StackBuilder />
34
+ </ div >
35
+ </ Suspense >
8
36
) ;
9
37
}
You can’t perform that action at this time.
0 commit comments