diff --git a/.vscode/settings.json b/.vscode/settings.json index 3fbb4ab25..8345c107c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,8 @@ "typescript.tsdk": "node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true, "editor.codeActionsOnSave": { - "source.fixAll": true, - "source.organizeImports": true, - "source.sortMembers": true + "source.fixAll": "explicit", + "source.organizeImports": "explicit", + "source.sortMembers": "explicit" } } diff --git a/app/landing.tsx b/app/landing.tsx new file mode 100644 index 000000000..6e5d01540 --- /dev/null +++ b/app/landing.tsx @@ -0,0 +1,18 @@ +import { Carousel } from 'components/carousel'; +import { ThreeItemGrid } from 'components/grid/three-items'; +import Footer from 'components/layout/footer'; +import { Suspense } from 'react'; + +export default function Landing() { + return ( + <> + + + + +