Skip to content

Commit

Permalink
Merge pull request #442 from elsoul/addFrontend
Browse files Browse the repository at this point in the history
added Solana Blinks Demo
  • Loading branch information
KishiTheMechanic authored Oct 7, 2024
2 parents f9ceae4 + 1f3b387 commit 8137e12
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 17 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@

🌍️ SSG Demo: https://skeeter.dev/

Repository for Demo App: https://github.com/elsoul/skeet-v3-next-edge-rc
Repository for AI Chat App Demo: https://github.com/elsoul/skeet-v3-next-edge-rc

Repository for SSG Demo: https://github.com/elsoul/skeet-v3-next-ssg-rc

Repository for Solana dApp Demo: https://github.com/elsoul/skeet-v3-solana-dapp-rc

## The Complete Web Framework for Modern Developers

With Skeet v3, we’ve fully migrated to Cloudflare, eliminating cold starts and introducing support for edge runtime. It has been transformed into a serverless-native architecture, optimized for the modern web.
Expand Down
2 changes: 2 additions & 0 deletions website/skeet-dev/articles/doc/en/general/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ v2 Documentation: https://skeet.dev/en/v2doc/general/overall-architecture
Skeet v3 Edge Runtime Next.js: https://github.com/elsoul/skeet-v3-next-edge-rc

Skeet v3 SSG Next.js: https://github.com/elsoul/skeet-v3-next-ssg-rc

Skeet v3 Solana dApp: https://github.com/elsoul/skeet-v3-solana-dapp-rc
2 changes: 2 additions & 0 deletions website/skeet-dev/articles/doc/ja/general/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ Skeet v2 ドキュメント: https://skeet.dev/ja/v2doc/general/overall-architec
Skeet v3 Edge Runtime Next.js: https://github.com/elsoul/skeet-v3-next-edge-rc

Skeet v3 SSG Next.js: https://github.com/elsoul/skeet-v3-next-ssg-rc

Skeet v3 Solana dApp: https://github.com/elsoul/skeet-v3-solana-dapp-rc
4 changes: 2 additions & 2 deletions website/skeet-dev/messages/en/(home).json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"title": "Into the World of Web3",
"summary": "Don’t worry. You can develop just as before using REST APIs and SDKs with TypeScript.",
"description": "Skeet’s rapid app development platform allows you to easily adapt to Web3 simply by adding a Web3 adapter. Once you start using Skeet, you're already prepared for Web3. We provide extensive support for Solana, a blockchain beloved by our development team for its technological excellence. With tailored boilerplates and code generations for various situations, you’ll find that development is smooth and efficient.",
"button1": "Join Us",
"button2": "Documentation"
"button1": "Solana dApp Demo",
"button2": "GitHub Repo"
}
}
}
4 changes: 2 additions & 2 deletions website/skeet-dev/messages/ja/(home).json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"title": "Web3 の世界へ",
"summary": "心配しないでください。今までと全く同じように REST API や SDK を使って TypeScript で開発できます。",
"description": "Skeet の爆速アプリ開発基盤を活用し、Web3 用のアダプターを追加するだけで簡単に Web3 対応が可能です。Skeet を使い始めれば、Web3 に対応する準備は整っています。特に、開発チームがその技術の素晴らしさから愛用する Solana に対しては手厚く、各種シチュエーションに合わせたボイラープレートやコードジェネレーション等が提供され、スムーズな開発が可能になります。",
"button1": "仲間になる",
"button2": "ドキュメント"
"button1": "Solana dApp デモ",
"button2": "GitHub リポ"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Link } from '@/navigation'
import { useTranslations } from 'next-intl'
import Image from 'next/image'
import appInfo from '@appInfo'
import { faDiscord } from '@fortawesome/free-brands-svg-icons'
import { faDiscord, faGithub } from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { DEFAULT_PATHS } from '../defaultNavs'

Expand Down Expand Up @@ -55,23 +55,22 @@ export default function Web3CompatibleRow() {
</p>
<div className="flex flex-wrap items-center justify-start gap-3 pt-6">
<Link
href={appInfo.discordInviteURL}
href={'https://solana-dapp.skeeter.dev/'}
target="_blank"
rel="noopener noreferrer"
>
<Button>
<Button>{t('(home).Web3CompatibleRow.button1')}</Button>
</Link>
<Link
href="https://github.com/elsoul/skeet-v3-solana-dapp-rc"
target="_blank"
rel="noopener noreferrer"
>
<Button variant="outline">
{
// @ts-ignore
<FontAwesomeIcon
icon={faDiscord}
className="mr-2 h-5 w-5"
/>
<FontAwesomeIcon icon={faGithub} className="mr-2 h-5 w-5" />
}
{t('(home).Web3CompatibleRow.button1')}
</Button>
</Link>
<Link href={DEFAULT_PATHS.doc}>
<Button variant="outline">
{t('(home).Web3CompatibleRow.button2')}
</Button>
</Link>
Expand Down

0 comments on commit 8137e12

Please sign in to comment.