generated from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add developer feedback survey and fix broken links (#106)
- Loading branch information
Showing
13 changed files
with
93 additions
and
135 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
components/DeveloperSurveyCallout/DeveloperSurveyCallout.tsx
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,25 @@ | ||
import { Callout } from 'nextra-theme-docs'; | ||
|
||
function DeveloperSurveyCallout() { | ||
return ( | ||
<div className='my-4'> | ||
<Callout emoji='🔍'> | ||
<p> | ||
<strong>Help Us Improve!</strong> | ||
</p> | ||
<p> | ||
We're conducting a short survey (less than 5 minutes) to gather your feedback and improve your development experience on Sei.{' '} | ||
<a | ||
className='nx-text-primary-600 nx-underline nx-decoration-from-font [text-underline-position:from-font]' | ||
href='https://forms.gle/eqkheVTwbK5HheLC6' | ||
target='_blank' | ||
rel='noopener'> | ||
Take the Survey Now | ||
</a> | ||
</p> | ||
</Callout> | ||
</div> | ||
); | ||
} | ||
|
||
export default DeveloperSurveyCallout; |
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 @@ | ||
export { default as DeveloperSurveyCallout } from './DeveloperSurveyCallout'; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
export * from "./AppCard"; | ||
export * from './AppCard'; | ||
export * from './APIEndpoint'; | ||
export * from './APIEndpointRoute'; | ||
export * from './APIModule'; | ||
export * from './APIModulePaths'; | ||
export * from './DeveloperSurveyCallout'; | ||
export * from './EcosystemApps'; | ||
export * from './EcosystemCard'; | ||
export * from './EvmWalletConnect'; | ||
export * from './HelpCallout'; | ||
export * from './BrandKitGallery'; | ||
export * from './ImageWithCaption'; | ||
export * from './Logo'; | ||
export * from './Nfts'; | ||
export * from './VersionFetcher'; | ||
export * from "./EcosystemMap"; | ||
export * from './EcosystemMap'; |
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
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,16 +1,15 @@ | ||
import { Cards, Card } from "nextra/components"; | ||
import { GanttChartSquare, Wallet, Wrench } from "lucide-react"; | ||
import { Cards, Card } from 'nextra/components'; | ||
import { GanttChartSquare, Wallet, Wrench } from 'lucide-react'; | ||
import { DeveloperSurveyCallout } from '../components'; | ||
|
||
<DeveloperSurveyCallout /> | ||
|
||
# Introducing Sei | ||
|
||
Sei is the first parallelized EVM. This allows Sei to get the best of Solana and Ethereum - a hyper optimized execution layer that benefits from the tooling and mindshare around the EVM. | ||
|
||
<Cards> | ||
<Card title="Overview" href="/general-overview" icon={<GanttChartSquare />} /> | ||
<Card title="User Guide" href="/user-guides/wallet-setup" icon={<Wallet />} /> | ||
<Card | ||
title="For Developers" | ||
href="/dev-intro" | ||
icon={<Wrench />} | ||
/> | ||
<Card title='Overview' href='/general-overview' icon={<GanttChartSquare />} /> | ||
<Card title='User Guide' href='/user-guides/wallet-setup' icon={<Wallet />} /> | ||
<Card title='For Developers' href='/dev-intro' icon={<Wrench />} /> | ||
</Cards> |
Oops, something went wrong.