-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52f8e6c
commit dd925dd
Showing
6 changed files
with
112 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import GuideSection from '../../GuideSection.js'; | ||
|
||
const frameworks = [ | ||
{ | ||
name: 'Next.js', | ||
href: '/guides/directory-sync/frameworks/nextjs', | ||
}, | ||
{ | ||
name: 'Express.js', | ||
href: '/guides/directory-sync/frameworks/express', | ||
}, | ||
]; | ||
|
||
export default function FrameworksGuide() { | ||
return <GuideSection items={frameworks} />; | ||
} |
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,21 @@ | ||
import React from 'react'; | ||
import GuideSection from '../../GuideSection.js'; | ||
|
||
const deployments = [ | ||
{ | ||
name: 'Heroku', | ||
href: '/guides/jackson/deployments/heroku', | ||
}, | ||
{ | ||
name: 'Vercel', | ||
href: '/guides/jackson/deployments/vercel', | ||
}, | ||
{ | ||
name: 'mogenius', | ||
href: '/guides/jackson/deployments/mogenius', | ||
}, | ||
]; | ||
|
||
export default function DeploymentsGuide() { | ||
return <GuideSection items={deployments} />; | ||
} |
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,37 @@ | ||
import React from 'react'; | ||
import GuideSection from '../../GuideSection.js'; | ||
|
||
const frameworks = [ | ||
{ | ||
name: 'AdonisJS', | ||
href: '/guides/jackson/frameworks/adonis', | ||
}, | ||
{ | ||
name: 'Express.js', | ||
href: '/guides/jackson/frameworks/express', | ||
}, | ||
{ | ||
name: 'Next.js', | ||
href: '/guides/jackson/frameworks/nextjs', | ||
}, | ||
{ | ||
name: 'React', | ||
href: '/guides/jackson/frameworks/react', | ||
}, | ||
{ | ||
name: 'Remix', | ||
href: '/guides/jackson/frameworks/remix', | ||
}, | ||
{ | ||
name: 'Laravel', | ||
href: '/guides/jackson/frameworks/laravel', | ||
}, | ||
{ | ||
name: 'Ruby on Rails', | ||
href: '/guides/jackson/frameworks/rails', | ||
}, | ||
]; | ||
|
||
export default function FrameworksGuide() { | ||
return <GuideSection items={frameworks} />; | ||
} |
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,29 @@ | ||
import React from 'react'; | ||
import GuideSection from '../../GuideSection.js'; | ||
|
||
const integrations = [ | ||
{ | ||
name: 'Auth0', | ||
href: '/guides/jackson/integrations/auth0', | ||
}, | ||
{ | ||
name: 'Firebase', | ||
href: '/guides/jackson/integrations/firebase', | ||
}, | ||
{ | ||
name: 'NextAuth', | ||
href: '/guides/jackson/integrations/nextauth', | ||
}, | ||
{ | ||
name: 'SuperTokens', | ||
href: '/guides/jackson/integrations/supertokens', | ||
}, | ||
{ | ||
name: 'Bubble.io', | ||
href: '/guides/jackson/integrations/bubble', | ||
}, | ||
]; | ||
|
||
export default function IntegrationsGuide() { | ||
return <GuideSection items={integrations} />; | ||
} |