-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): social media image preview
- Loading branch information
Showing
12 changed files
with
72 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
# Auth variables | ||
# Auth | ||
NEXT_PUBLIC_AUTH_REGION: us-east-1 | ||
NEXT_PUBLIC_AUTH_USER_POOL_ID: us-east-1_apywr6kwu | ||
NEXT_PUBLIC_AUTH_USER_POOL_WEB_CLIENT_ID: 76en8knncv8bfpfgbheua6j6k | ||
NEXT_PUBLIC_AUTH_OAUTH_DOMAIN: authdev.chessdojo.club | ||
NEXT_PUBLIC_AUTH_OAUTH_DOMAIN: user-pool-domain-dev-chess-dojo-scheduler.auth.us-east-1.amazoncognito.com | ||
NEXT_PUBLIC_AUTH_OAUTH_SCOPES: profile,email,openid | ||
NEXT_PUBLIC_AUTH_OAUTH_REDIRECT_SIGN_IN: http://localhost:3000 | ||
NEXT_PUBLIC_AUTH_OAUTH_REDIRECT_SIGN_OUT: http://localhost:3000 | ||
NEXT_PUBLIC_AUTH_OAUTH_RESPONSE_TYPE: code | ||
|
||
# API variables | ||
# API | ||
NEXT_PUBLIC_API_BASE_URL: https://c2qamdaw08.execute-api.us-east-1.amazonaws.com | ||
|
||
# Media variables | ||
# Media | ||
NEXT_PUBLIC_MEDIA_PICTURES_BUCKET: https://chess-dojo-dev-pictures.s3.amazonaws.com | ||
|
||
# Stripe variables | ||
# Stripe | ||
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY: pk_test_51OB6imGilmvijaecMJqdvLJdu89BcghnjU7eOIoCwlBl8DeV6i2XojJOaZ36lamZMuVjO7aorXtl90OcdtAstFfF0022uf0sdp | ||
|
||
# Site | ||
NEXT_PUBLIC_BASE_URL=http://localhost:3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Layout } from '@/legacy/Layout'; | ||
import { Metadata } from 'next'; | ||
|
||
export const metadata: Metadata = { | ||
title: 'ChessDojo', | ||
description: | ||
'View the scoreboard, schedule meetings and more for the ChessDojo Training Program', | ||
}; | ||
|
||
export default function RootLayout({ children }: { children: React.ReactNode }) { | ||
return <Layout>{children}</Layout>; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters