Skip to content

Instantly share code, notes, and snippets.

@MichaelWalker-git
Last active August 14, 2024 22:31
Show Gist options
  • Save MichaelWalker-git/762644d144aceeecabdd38c3c9c335e7 to your computer and use it in GitHub Desktop.
Save MichaelWalker-git/762644d144aceeecabdd38c3c9c335e7 to your computer and use it in GitHub Desktop.
file structure
.
├── README.md
├── index.html
├── jsconfig.json
├── netlify.toml
├── output.txt
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│   ├── docs
│   │   ├── Customer-Acceptance-Policy.pdf
│   │   ├── PAYMENT-FAQ.pdf
│   │   ├── Privacy-Policy.pdf
│   │   ├── Responsible-Social-Gameplay.pdf
│   │   ├── Sweeps-Rules.pdf
│   │   └── Terms-And-Conditions.pdf
│   ├── favicon.ico
│   ├── font
│   │   ├── Inter-italic.var.woff2
│   │   ├── Inter-roman.var.woff2
│   │   ├── Roboto-Medium.ttf
│   │   ├── RobotoCondensed-Bold.ttf
│   │   └── inter.css
│   ├── images
│   │   ├── banners
│   │   ├── favicon
│   │   │   ├── favicon.ico
│   │   │   └── site.webmanifest
│   │   ├── game
│   │   ├── giveaways
│   │   ├── global
│   │   ├── home
│   │   ├── pragmatic
│   │   │   └── desktop.ini
│   │   ├── ranks
│   │   ├── relax
│   │   ├── softswiss
│   │   └── tennisBall
│   ├── js
│   │   ├── imagesloaded
│   │   └── roll
│   │   ├── dice
│   │   │   ├── dice.css
│   │   │   ├── dice.js
│   │   │   ├── index.html
│   │   │   └── main.js
│   │   ├── dice.py
│   │   ├── libs
│   │   ├── main.css
│   │   ├── readme.txt
│   │   └── teal.js
│   ├── robots.txt
│   ├── site.webmanifest
│   └── sitemap.xml
├── src
│   ├── App.vue
│   ├── assets
│   │   ├── 3d
│   │   ├── audio
│   │   │   └── win.wav
│   │   ├── banners
│   │   ├── bundles
│   │   ├── coins
│   │   ├── crash
│   │   │   ├── animations
│   │   │   │   ├── explosion.json
│   │   │   │   └── rocket.json
│   │   │   ├── particles
│   │   │   │   └── shapes.json
│   │   │   └── sounds
│   │   ├── fonts
│   │   │   ├── Neue Plak Black.ttf
│   │   │   ├── Neue Plak Bold.ttf
│   │   │   ├── Neue Plak Condensed Black.ttf
│   │   │   ├── Neue Plak Condensed Bold.ttf
│   │   │   ├── Neue Plak Condensed ExtraBlack.ttf
│   │   │   ├── Neue Plak Condensed Light.ttf
│   │   │   ├── Neue Plak Condensed Regular.ttf
│   │   │   ├── Neue Plak Condensed SemiBold.ttf
│   │   │   ├── Neue Plak Condensed Thin.ttf
│   │   │   ├── Neue Plak Condensed UltraLight.ttf
│   │   │   ├── Neue Plak Extended Black.ttf
│   │   │   ├── Neue Plak Extended Bold.ttf
│   │   │   ├── Neue Plak Extended ExtraBlack.ttf
│   │   │   ├── Neue Plak Extended Light.ttf
│   │   │   ├── Neue Plak Extended Regular.ttf
│   │   │   ├── Neue Plak Extended SemiBold.ttf
│   │   │   ├── Neue Plak Extended Thin.ttf
│   │   │   ├── Neue Plak Extended UltraLight.ttf
│   │   │   ├── Neue Plak ExtraBlack.ttf
│   │   │   ├── Neue Plak Light.ttf
│   │   │   ├── Neue Plak Regular.ttf
│   │   │   ├── Neue Plak SemiBold.ttf
│   │   │   ├── Neue Plak Text Black Italic.ttf
│   │   │   ├── Neue Plak Text Black.ttf
│   │   │   ├── Neue Plak Text Bold Italic.ttf
│   │   │   ├── Neue Plak Text Bold.ttf
│   │   │   ├── Neue Plak Text Italic.ttf
│   │   │   ├── Neue Plak Text Light Italic.ttf
│   │   │   ├── Neue Plak Text Light.ttf
│   │   │   ├── Neue Plak Text SemiBold Italic.ttf
│   │   │   ├── Neue Plak Text SemiBold.ttf
│   │   │   ├── Neue Plak Text Thin Italic.ttf
│   │   │   ├── Neue Plak Text Thin.ttf
│   │   │   ├── Neue Plak Thin.ttf
│   │   │   └── Neue Plak UltraLight.ttf
│   │   ├── footer
│   │   ├── gifs
│   │   ├── home
│   │   │   ├── cash
│   │   │   └── fun
│   │   ├── loader
│   │   ├── logo
│   │   ├── media
│   │   ├── new
│   │   │   └── icons
│   │   │   └── slots
│   │   ├── old
│   │   │   └── svg
│   │   │   └── chat
│   │   ├── paymentmethods
│   │   ├── profile
│   │   ├── sidebar
│   │   └── svg
│   │   ├── fiat
│   │   ├── history
│   │   ├── mines
│   │   ├── plunder
│   │   ├── roulette
│   │   ├── slider
│   │   ├── slots
│   │   ├── tiles
│   │   │   ├── main
│   │   │   └── png
│   │   ├── vip
│   │   │   └── benefits
│   │   └── wallet
│   ├── bootstrap.js
│   ├── components
│   │   ├── Account
│   │   │   └── Account.vue
│   │   ├── Affiliates
│   │   │   ├── Bob.vue
│   │   │   ├── Campaign.vue
│   │   │   ├── Custom.vue
│   │   │   ├── Fedmyster.vue
│   │   │   ├── Fishy.vue
│   │   │   ├── Funds.vue
│   │   │   ├── MyAffiliates.vue
│   │   │   ├── Overview.vue
│   │   │   └── ReferedUsers.vue
│   │   ├── Auth
│   │   │   ├── ForgotPassword.vue
│   │   │   ├── LoginForm.vue
│   │   │   ├── LoginOrRegister.vue
│   │   │   ├── PasswordReset.vue
│   │   │   └── RegisterForm.vue
│   │   ├── Baccarat
│   │   │   ├── BacChip.vue
│   │   │   ├── Baccarat.vue
│   │   │   ├── BaccaratBets.vue
│   │   │   ├── BaccaratCountDown.vue
│   │   │   ├── BaccaratFairness.vue
│   │   │   ├── BaccaratGrid.vue
│   │   │   ├── BaccaratRules.vue
│   │   │   ├── BaccaratVerification.vue
│   │   │   ├── Card.vue
│   │   │   ├── Chip.vue
│   │   │   ├── PlayingCards.js
│   │   │   └── sounds.js
│   │   ├── Bank
│   │   │   ├── AptPay.vue
│   │   │   ├── AptPayWithdraw.vue
│   │   │   ├── AptPayWithdrawOld.vue
│   │   │   ├── Balance.vue
│   │   │   ├── Bank.vue
│   │   │   ├── BioAuthVerify.vue
│   │   │   ├── Bundles.vue
│   │   │   ├── DailyBonus.vue
│   │   │   ├── Deposit.vue
│   │   │   ├── FiatDropdown.vue
│   │   │   ├── IdentityVerificationForm.vue
│   │   │   ├── PaySafeIdentityVerificationForm.vue
│   │   │   ├── PaymentConfirmModel.vue
│   │   │   ├── PaymentForm.vue
│   │   │   ├── SelectFiat.vue
│   │   │   ├── SsnVerification.vue
│   │   │   ├── TestComponent.vue
│   │   │   ├── Tip.vue
│   │   │   ├── TopUp.vue
│   │   │   ├── VerifyAccount.vue
│   │   │   ├── Withdraw.vue
│   │   │   └── countries.json
│   │   ├── Blackjack
│   │   │   ├── Blackjack.vue
│   │   │   ├── BlackjackGameInfo.vue
│   │   │   ├── Card.vue
│   │   │   ├── FairnessModal.vue
│   │   │   ├── PlayingCards.js
│   │   │   ├── RulesModal.vue
│   │   │   ├── WagerInput.vue
│   │   │   └── sounds.js
│   │   ├── Bonus
│   │   │   ├── Feddy.vue
│   │   │   ├── Fishy.vue
│   │   │   ├── Giveaway.vue
│   │   │   └── GiveawayDrop.vue
│   │   ├── Challenges
│   │   │   ├── Challenges.vue
│   │   │   ├── ChallengesModal.vue
│   │   │   └── SortFilters.vue
│   │   ├── Chat
│   │   │   ├── AnnouncementMessage.vue
│   │   │   ├── ChatActions.vue
│   │   │   ├── ChatBar.vue
│   │   │   ├── ChatConnectionStatus.vue
│   │   │   ├── ChatFooter.vue
│   │   │   ├── ChatHeader.vue
│   │   │   ├── ChatMessage.vue
│   │   │   ├── ChatMessageList.vue
│   │   │   ├── ChatRoomSelector.vue
│   │   │   ├── ChatRoster.vue
│   │   │   ├── ChatRosterUserList.vue
│   │   │   ├── ChatRules.vue
│   │   │   ├── ChatRulesModal.vue
│   │   │   ├── GameActionMessage.vue
│   │   │   ├── InlineAction.vue
│   │   │   ├── RacesMessage.vue
│   │   │   ├── RainBotMessage.vue
│   │   │   └── TokenRenderer.vue
│   │   ├── Crash
│   │   │   ├── Crash.vue
│   │   │   ├── CrashBetInfo.vue
│   │   │   ├── CrashBets.vue
│   │   │   ├── CrashCanvas.vue
│   │   │   ├── CrashGameInfo.vue
│   │   │   ├── CrashGames.vue
│   │   │   ├── CrashGrid.vue
│   │   │   ├── CrashRules.vue
│   │   │   ├── CrashVerification.vue
│   │   │   └── sounds.js
│   │   ├── Dice
│   │   │   ├── BetButton.vue
│   │   │   ├── BetInfo.vue
│   │   │   ├── DiceRules.vue
│   │   │   ├── Dicing.vue
│   │   │   ├── DicingBets.vue
│   │   │   ├── EditableNumberInput.vue
│   │   │   ├── ProvablyFairCard.vue
│   │   │   └── sounds.js
│   │   ├── Duels
│   │   │   ├── Card.vue
│   │   │   ├── DuelBetInfo.vue
│   │   │   ├── Duels.vue
│   │   │   ├── DuelsBets.vue
│   │   │   ├── DuelsCountDown.vue
│   │   │   ├── DuelsFairness.vue
│   │   │   ├── DuelsGrid.vue
│   │   │   ├── DuelsRules.vue
│   │   │   ├── DuelsVerification.vue
│   │   │   ├── PlayingCards.js
│   │   │   ├── Roll
│   │   │   │   ├── dice
│   │   │   │   │   ├── dice.css
│   │   │   │   │   ├── dice.js
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── main.js
│   │   │   │   ├── dice.py
│   │   │   │   ├── libs
│   │   │   │   ├── main.css
│   │   │   │   ├── readme.txt
│   │   │   │   └── teal.js
│   │   │   └── sounds.js
│   │   ├── FreeBies
│   │   │   └── JackpotContributors.vue
│   │   ├── GameHistory
│   │   │   ├── BetsHistory.vue
│   │   │   └── MyGamePlay.vue
│   │   ├── GeoBlocked.vue
│   │   ├── Giveaways
│   │   │   ├── GiveawayCreate.vue
│   │   │   ├── GiveawayDetails.vue
│   │   │   └── Giveaways.vue
│   │   ├── Home
│   │   │   ├── Auth.vue
│   │   │   ├── GameType.vue
│   │   │   ├── HNavigator.vue
│   │   │   ├── Home.vue
│   │   │   ├── HomeLiveTile.vue
│   │   │   ├── HomeSlider.vue
│   │   │   ├── Landing.vue
│   │   │   ├── Landingpage
│   │   │   │   ├── CasinoGames.vue
│   │   │   │   ├── LatestWinner.vue
│   │   │   │   ├── MainSection.vue
│   │   │   │   ├── PFooter.vue
│   │   │   │   ├── PHeader.vue
│   │   │   │   ├── PlayForCash.vue
│   │   │   │   ├── PlayForFun.vue
│   │   │   │   ├── RealPeople.vue
│   │   │   │   ├── Testimonials.vue
│   │   │   │   └── style.css
│   │   │   ├── Popup.vue
│   │   │   ├── ProfilePopup.vue
│   │   │   ├── Promotions.vue
│   │   │   ├── Slider
│   │   │   │   ├── HomeSlider.vue
│   │   │   │   ├── effect-carousel.esm.js
│   │   │   │   ├── effect-carousel.scss
│   │   │   │   └── main.scss
│   │   │   ├── Tiles.vue
│   │   │   ├── Vip.vue
│   │   │   └── style.css
│   │   ├── Jackpotari.vue
│   │   ├── Keno
│   │   │   ├── Keno.vue
│   │   │   ├── KenoBets.vue
│   │   │   ├── KenoFairness.vue
│   │   │   ├── KenoGrid.vue
│   │   │   ├── KenoRules.vue
│   │   │   ├── KenoVerification.vue
│   │   │   └── sounds.js
│   │   ├── Licenses
│   │   │   └── Licenses.vue
│   │   ├── Limbo
│   │   │   ├── BetButton.vue
│   │   │   ├── EditableNumberInput.vue
│   │   │   ├── Limbo.vue
│   │   │   ├── LimboBets.vue
│   │   │   ├── LimboFairness.vue
│   │   │   ├── LimboGameInfo.vue
│   │   │   ├── LimboRules.vue
│   │   │   ├── LimboVerification.vue
│   │   │   ├── ProvablyFairCard.vue
│   │   │   └── sounds.js
│   │   ├── Lossback.vue
│   │   ├── MainFooter.vue
│   │   ├── Mines
│   │   │   ├── Mines.vue
│   │   │   ├── MinesBets.vue
│   │   │   ├── MinesFairness.vue
│   │   │   ├── MinesGrid.vue
│   │   │   ├── MinesGridItem.vue
│   │   │   ├── MinesPayTable.vue
│   │   │   ├── MinesRules.vue
│   │   │   ├── MinesVerification.vue
│   │   │   └── sounds.js
│   │   ├── MobileNavigator.vue
│   │   ├── Phaser
│   │   │   ├── Game.vue
│   │   │   └── PhaserContainer.vue
│   │   ├── Plinko
│   │   │   ├── Plinko.vue
│   │   │   ├── PlinkoBets.vue
│   │   │   ├── PlinkoColors.js
│   │   │   ├── PlinkoFairness.vue
│   │   │   ├── PlinkoGrid.vue
│   │   │   ├── PlinkoPeg.vue
│   │   │   ├── PlinkoRules.vue
│   │   │   ├── PlinkoService.js
│   │   │   ├── PlinkoVerification.vue
│   │   │   └── sounds.js
│   │   ├── Policies
│   │   │   ├── AML.vue
│   │   │   ├── Policies.vue
│   │   │   ├── Privacy.vue
│   │   │   ├── Rollover.vue
│   │   │   └── TermsOfService.vue
│   │   ├── Pragmatic
│   │   │   ├── Pragmatic.vue
│   │   │   └── PragmaticTiles.vue
│   │   ├── ProvablyFair
│   │   │   ├── Conversions.vue
│   │   │   ├── GameEvents.vue
│   │   │   ├── Implementation.vue
│   │   │   ├── Overview.vue
│   │   │   └── ProvablyFair.vue
│   │   ├── RecognizeSigns
│   │   │   └── RecognizeSigns.vue
│   │   ├── Relax
│   │   │   ├── ProviderFilters.vue
│   │   │   ├── Relax.vue
│   │   │   ├── RelaxBetInfo.vue
│   │   │   ├── RelaxHomeTiles.vue
│   │   │   ├── RelaxTiles.vue
│   │   │   ├── SortFilters.vue
│   │   │   ├── acceptance.json
│   │   │   └── originals.js
│   │   ├── ResponsibleGaming
│   │   │   └── ResponsibleGaming.vue
│   │   ├── Roulette
│   │   │   ├── BetPerChipInput.vue
│   │   │   ├── Chip.vue
│   │   │   ├── ChipMobile.vue
│   │   │   ├── PlayingCards.js
│   │   │   ├── ProvablyFairCard.vue
│   │   │   ├── RoulChip.vue
│   │   │   ├── Roulette.vue
│   │   │   ├── RouletteBets.vue
│   │   │   ├── RouletteGameInfo.vue
│   │   │   ├── RouletteLayouts.js
│   │   │   ├── RouletteRules.vue
│   │   │   ├── RouletteTable.vue
│   │   │   ├── RouletteTableMobile.vue
│   │   │   ├── RouletteWheel.vue
│   │   │   ├── RouletteWheelRenderer.js
│   │   │   ├── _variables.scss
│   │   │   └── sounds.js
│   │   ├── Search
│   │   │   ├── Search.vue
│   │   │   └── SearchMobile.vue
│   │   ├── SelfAssessment
│   │   │   └── SelfAssessment.vue
│   │   ├── Settings
│   │   │   ├── CloseAccount.vue
│   │   │   ├── General.vue
│   │   │   ├── Offers.vue
│   │   │   ├── Preferences.vue
│   │   │   ├── PromoOptInModal.vue
│   │   │   ├── Security.vue
│   │   │   ├── Settings.vue
│   │   │   └── Verify.vue
│   │   ├── Shared
│   │   │   ├── CopyToClipboard.vue
│   │   │   ├── Fairness.vue
│   │   │   ├── FullScreenLoader.vue
│   │   │   ├── GameActions.vue
│   │   │   ├── GameDetails.vue
│   │   │   ├── Loader.vue
│   │   │   ├── LoadingOverlay.vue
│   │   │   ├── NumberAnimation.vue
│   │   │   ├── PuntModal.vue
│   │   │   └── icons.js
│   │   ├── Sidebar
│   │   │   └── LeftSideBar.vue
│   │   ├── SitePolicies
│   │   │   ├── PrivacyPolicy.vue
│   │   │   └── SweepRules.vue
│   │   ├── Slots
│   │   │   ├── Slots.vue
│   │   │   ├── SlotsBets.vue
│   │   │   ├── SlotsCanvas.vue
│   │   │   ├── SlotsFairness.vue
│   │   │   ├── SlotsFrame.vue
│   │   │   ├── SlotsGameInfo.vue
│   │   │   ├── SlotsGrid.vue
│   │   │   ├── SlotsPayLines.vue
│   │   │   ├── SlotsRules.vue
│   │   │   ├── SlotsVerification.vue
│   │   │   ├── Symbols
│   │   │   │   ├── SlotsBlueCoin.vue
│   │   │   │   ├── SlotsBlueSpade.vue
│   │   │   │   ├── SlotsGreenDiamond.vue
│   │   │   │   ├── SlotsGreenRuby.vue
│   │   │   │   ├── SlotsGreyCat.vue
│   │   │   │   ├── SlotsPurpleClub.vue
│   │   │   │   ├── SlotsPurplePolygon.vue
│   │   │   │   ├── SlotsRedHeart.vue
│   │   │   │   ├── SlotsRedSquare.vue
│   │   │   │   ├── SlotsScatter.vue
│   │   │   │   ├── SlotsSymbol.vue
│   │   │   │   ├── SlotsWild.vue
│   │   │   │   ├── SlotsYellowCoin.vue
│   │   │   │   └── SlotsYellowTriangle.vue
│   │   │   └── sounds.js
│   │   ├── Softswiss
│   │   │   ├── ProviderFilters.vue
│   │   │   ├── Softswiss.vue
│   │   │   ├── SoftswissBetInfo.vue
│   │   │   ├── SoftswissTiles.vue
│   │   │   ├── SoftwissHomeTiles.vue
│   │   │   ├── SortFilters.vue
│   │   │   ├── acceptance.json
│   │   │   ├── bgaming.json
│   │   │   └── originals.js
│   │   ├── Sports
│   │   │   ├── Sports.vue
│   │   │   ├── SportsBetHistoryTable.vue
│   │   │   ├── SportsBetInfo.vue
│   │   │   └── SportsBetPlacedInfo.vue
│   │   ├── Stats
│   │   │   └── UserStats.vue
│   │   ├── TechnicalWarning.vue
│   │   ├── TopHeader.vue
│   │   ├── Transactions
│   │   │   ├── Deposits.vue
│   │   │   ├── Details.vue
│   │   │   ├── MyTransactions.vue
│   │   │   └── Withdrawals.vue
│   │   ├── TvBet
│   │   │   ├── TvBet.vue
│   │   │   ├── TvBetHistoryTable.vue
│   │   │   ├── TvBetInfo.vue
│   │   │   └── TvBetPlacedInfo.vue
│   │   ├── Veriff
│   │   │   └── VerifyLink.vue
│   │   ├── VeriffBouns.vue
│   │   ├── Vip
│   │   │   ├── Accordian.vue
│   │   │   ├── Benefits.vue
│   │   │   ├── BenefitsItem.vue
│   │   │   ├── Card.vue
│   │   │   ├── CardGroup.vue
│   │   │   ├── ClubBanefit.js
│   │   │   ├── ClubBanefit.vue
│   │   │   ├── ClubBanefitItem.vue
│   │   │   ├── Profile.vue
│   │   │   ├── Ranking.vue
│   │   │   ├── SectionTitle.vue
│   │   │   ├── VipNew.vue
│   │   │   ├── all.js
│   │   │   ├── faq.js
│   │   │   └── faq.vue
│   │   └── War
│   │   ├── Card.vue
│   │   ├── PlayingCards.js
│   │   ├── War.vue
│   │   ├── WarBets.vue
│   │   ├── WarCountDown.vue
│   │   ├── WarFairness.vue
│   │   ├── WarGrid.vue
│   │   ├── WarRules.vue
│   │   ├── WarVerification.vue
│   │   └── sounds.js
│   ├── entry.js
│   ├── game
│   │   ├── Contant.js
│   │   ├── game.js
│   │   └── scenes
│   │   ├── BootScene.js
│   │   └── PlayScene.js
│   ├── index.css
│   ├── lib
│   │   ├── auth.js
│   │   ├── axiosConfig.js
│   │   ├── chat-messages
│   │   │   └── tokenizer.js
│   │   ├── converter.js
│   │   ├── defer.js
│   │   ├── echo.js
│   │   ├── icons.js
│   │   ├── myAxios.js
│   │   ├── pb.js
│   │   ├── random.js
│   │   ├── recaptcha.js
│   │   ├── rsgp.js
│   │   ├── state.js
│   │   ├── utils.js
│   │   ├── vcs
│   │   │   ├── index.js
│   │   │   └── v-chat-scroll.js
│   │   └── visibility.js
│   ├── main.js
│   ├── router.js
│   ├── store
│   │   ├── chatStore.js
│   │   ├── historyStore.js
│   │   ├── index.js
│   │   ├── modules
│   │   │   ├── baccarat.js
│   │   │   ├── blackjack.js
│   │   │   ├── chat.js
│   │   │   ├── dicing.js
│   │   │   ├── duels.js
│   │   │   ├── http.js
│   │   │   ├── keno.js
│   │   │   ├── limbo.js
│   │   │   ├── mines.js
│   │   │   ├── orders.js
│   │   │   ├── plinko.js
│   │   │   ├── provably-fair.js
│   │   │   ├── roulette.js
│   │   │   ├── slips.js
│   │   │   ├── slots.js
│   │   │   ├── sound.js
│   │   │   ├── sports.js
│   │   │   ├── stats.js
│   │   │   ├── tvbet.js
│   │   │   └── war.js
│   │   ├── pinia
│   │   │   ├── affiliatesStore.js
│   │   │   ├── aptPay.js
│   │   │   ├── authStore.js
│   │   │   ├── balanceStore.js
│   │   │   ├── challengeStore.js
│   │   │   ├── dailyBonusStore.js
│   │   │   ├── duelStore.js
│   │   │   ├── generalStore.js
│   │   │   ├── giveawayStore.js
│   │   │   ├── ordersStore.js
│   │   │   ├── pragmaticStore.js
│   │   │   ├── relaxStore.js
│   │   │   ├── rouletteStore.js
│   │   │   ├── softswissStore.js
│   │   │   ├── transactionStore.js
│   │   │   ├── tvBetStore.js
│   │   │   └── twoFactorStore.js
│   │   ├── sportsHistoryStore.js
│   │   ├── tvBetHistoryStore.js
│   │   └── userStore.js
│   ├── tailwind.css
│   ├── utils.js
│   └── views
│   ├── About.vue
│   ├── Home.vue
│   ├── NotFound.vue
│   └── router.js
├── tailwind.config.js
└── vite.config.js
124 directories, 486 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment