Skip to content

init community page #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 41 commits into
base: nextra
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
ce89ca1
bootstrap
dimaMachina Jan 8, 2024
42586e5
remove files, install with pnpm
dimaMachina Jan 8, 2024
9228e50
more work
dimaMachina Jan 8, 2024
d55b28c
move queries
dimaMachina Jan 8, 2024
a433649
move schema and validation
dimaMachina Jan 8, 2024
82dbf4f
move execution
dimaMachina Jan 8, 2024
141269a
add banner
dimaMachina Jan 8, 2024
03e0410
move introspection
dimaMachina Jan 8, 2024
ea7a468
move best-practices and thinking-in-graphs
dimaMachina Jan 8, 2024
f8654a3
polish
dimaMachina Jan 8, 2024
e874cdc
move serving-over-http
dimaMachina Jan 8, 2024
50d401e
polish
dimaMachina Jan 8, 2024
7efbc71
move authorization
dimaMachina Jan 8, 2024
be0dc80
move pagination
dimaMachina Jan 8, 2024
f17dc9f
move global-object-identification
dimaMachina Jan 8, 2024
ee60459
move caching
dimaMachina Jan 8, 2024
0fd0faf
move foundation
dimaMachina Jan 8, 2024
e6fbd7e
move join
dimaMachina Jan 8, 2024
0bf185d
move graphql-conf
dimaMachina Jan 8, 2024
a11418e
move community-grant
dimaMachina Jan 8, 2024
abc3502
move contact
dimaMachina Jan 8, 2024
e024ffc
move annual-reports
dimaMachina Jan 8, 2024
84fca6f
polish
dimaMachina Jan 8, 2024
b7721d0
fix hydration errors
dimaMachina Jan 8, 2024
a6b5344
polish
dimaMachina Jan 8, 2024
ca8c592
polish
dimaMachina Jan 8, 2024
4cd13ad
move public files
dimaMachina Jan 8, 2024
c6c1f9a
polish
dimaMachina Jan 8, 2024
75e8eb0
polish
dimaMachina Jan 8, 2024
dd884c9
fix images
dimaMachina Jan 8, 2024
f55e1d8
polish
dimaMachina Jan 8, 2024
0298299
add members page
dimaMachina Jan 8, 2024
20a9215
add landscape
dimaMachina Jan 8, 2024
f4bf942
move faq
dimaMachina Jan 8, 2024
5de3287
move faq more
dimaMachina Jan 8, 2024
95cab20
move all faqs
dimaMachina Jan 8, 2024
24c7ebb
polish
dimaMachina Jan 8, 2024
4c0d52f
polish
dimaMachina Jan 8, 2024
2dc0a21
polish
dimaMachina Jan 8, 2024
2f97405
init community page
danstarns Jan 9, 2024
8b2b3b1
typo
danstarns Jan 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ typings/

# gatsby files
.cache/
public/
/public/

!static/img/__og-image/
static/img/__og-image/*
Expand All @@ -80,3 +80,5 @@ yarn-error.log
src/__generated__/

.idea/
next-env.d.ts
.next/
53 changes: 0 additions & 53 deletions src/pages/foundation/members.tsx

This file was deleted.

13 changes: 13 additions & 0 deletions website/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import nextra from 'nextra'

const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
})

/**
* @type {import('next').NextConfig}
*/
export default withNextra({
reactStrictMode: true
})
32 changes: 32 additions & 0 deletions website/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "graphql.org",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"type": "module",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"next": "^14.0.4",
"nextra": "^3.0.0-alpha.10",
"nextra-theme-docs": "^3.0.0-alpha.10"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.10.7",
"@types/react": "^18.2.47",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1"
},
"pnpm": {
"overrides": {
"flexsearch": "0.7.31"
}
}
}
Loading