├── .github ├── ISSUE_TEMPLATE │ ├── add_project.yml │ └── config.yml └── workflows │ ├── website-preview.yml │ └── website-production.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── next-i18next.config.js ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.svg ├── files │ ├── ClashGrotesk.zip │ └── PublicSans.zip ├── fonts │ ├── ClashDisplay-Medium.eot │ ├── ClashDisplay-Medium.ttf │ ├── ClashDisplay-Medium.woff │ ├── ClashDisplay-Medium.woff2 │ ├── ClashDisplay-Semibold.eot │ ├── ClashDisplay-Semibold.ttf │ ├── ClashDisplay-Semibold.woff │ ├── ClashDisplay-Semibold.woff2 │ ├── ClashGrotesk-Medium.eot │ ├── ClashGrotesk-Medium.ttf │ ├── ClashGrotesk-Medium.woff │ ├── ClashGrotesk-Medium.woff2 │ ├── ClashGrotesk-Semibold.eot │ ├── ClashGrotesk-Semibold.ttf │ ├── ClashGrotesk-Semibold.woff │ ├── ClashGrotesk-Semibold.woff2 │ ├── Gilroy-Medium.eot │ ├── Gilroy-Medium.ttf │ ├── Gilroy-Medium.woff │ ├── Gilroy-Medium.woff2 │ ├── HelveticaNeueCyr-Medium.eot │ ├── HelveticaNeueCyr-Medium.ttf │ ├── HelveticaNeueCyr-Medium.woff │ ├── HelveticaNeueCyr-Medium.woff2 │ ├── Onest-Medium.eot │ ├── Onest-Medium.ttf │ ├── Onest-Medium.woff │ ├── Onest-Medium.woff2 │ ├── PublicSans-Medium.eot │ ├── PublicSans-Medium.ttf │ ├── PublicSans-Medium.woff │ ├── PublicSans-Medium.woff2 │ ├── PublicSans-Regular.eot │ ├── PublicSans-Regular.ttf │ ├── PublicSans-Regular.woff │ ├── PublicSans-Regular.woff2 │ ├── PublicSans-SemiBold.eot │ ├── PublicSans-SemiBold.ttf │ ├── PublicSans-SemiBold.woff │ └── PublicSans-SemiBold.woff2 ├── img │ ├── about │ │ ├── careers-background-mobile.jpg │ │ ├── careers-background.jpg │ │ ├── community-circle-mobile.svg │ │ ├── community-circle.svg │ │ ├── mission-card.jpg │ │ └── mission-card.webp │ ├── apply-form.png │ ├── brand │ │ ├── background.jpg │ │ ├── fonts-grotesk.svg │ │ ├── fonts-sans.svg │ │ ├── logo-background-1.jpg │ │ ├── logo-pb.svg │ │ ├── logo-pw.svg │ │ ├── logo-ww.svg │ │ └── taiko.zip │ ├── events-hero.jpg │ ├── grant │ │ ├── hero-banner.jpg │ │ ├── mission-icon-1.svg │ │ ├── mission-icon-2.svg │ │ ├── mission-icon-3.svg │ │ ├── mission-icon-4.svg │ │ ├── track-icon-1.svg │ │ ├── track-icon-2.svg │ │ └── track-icon-3.svg │ ├── grants-banner │ │ ├── grants-lg.png │ │ ├── grants-md.png │ │ ├── grants-sm.png │ │ ├── grants-xl.png │ │ └── icon.svg │ ├── home │ │ ├── about-gradient.png │ │ ├── about-gradient.webp │ │ ├── ec-1.png │ │ ├── ec-2.png │ │ ├── ec-3.png │ │ ├── ec-4.png │ │ ├── ecosystem.json │ │ ├── ecosystem.mob.json │ │ ├── ecosystem.mob.v2.json │ │ └── hero-sprite.jpg │ ├── icons │ │ ├── nav-about.svg │ │ ├── nav-blog.svg │ │ ├── nav-brandkit.svg │ │ ├── nav-bridge.svg │ │ ├── nav-careers.svg │ │ ├── nav-docs.svg │ │ ├── nav-ecosystem.svg │ │ ├── nav-events.svg │ │ ├── nav-explorer.svg │ │ ├── nav-grants.svg │ │ ├── nav-news.svg │ │ ├── nav-snaefell.svg │ │ ├── nav-solutions.svg │ │ ├── nav-status.svg │ │ ├── nav-swap.svg │ │ ├── nav-taikoons.svg │ │ └── nav-trailblazer.svg │ ├── intro-loop-mob.json │ ├── intro-loop-mob.v3.json │ ├── intro-loop.json │ ├── intro-mob.json │ ├── intro.json │ ├── laptop.json │ ├── loader.jpg │ ├── logo.svg │ ├── menu_background.png │ ├── mirror-logo.png │ ├── og-image.png │ ├── rocket.json │ ├── solutions │ │ ├── hero-gradient-mobile.jpg │ │ ├── hero-gradient.v2.jpg │ │ ├── hero-gradient.v2.webp │ │ ├── icon-bridge.svg │ │ ├── icon-explorer.svg │ │ ├── icon-laptop.svg │ │ ├── icon-rocket.svg │ │ ├── icon-swap.svg │ │ ├── item-bridge.png │ │ ├── item-bridge.webp │ │ ├── item-explorer.jpg │ │ ├── item-explorer.png │ │ ├── item-explorer.webp │ │ ├── item-swap.png │ │ └── item-swap.webp │ ├── sprite.svg │ ├── tko-token-icons │ │ ├── icon-64x64.png │ │ ├── icon.png │ │ ├── icon.svg │ │ └── icon_512x512.png │ └── trailblazer │ │ ├── banner-lg.png │ │ ├── banner-md.png │ │ ├── banner-sm.png │ │ ├── banner-xl.png │ │ ├── icon.svg │ │ ├── image 2.png │ │ ├── trailblazer-w-taiko.svg │ │ └── trailblazer.svg └── locales │ └── en │ ├── about.json │ ├── article.json │ ├── blog.json │ ├── brand-assets.json │ ├── careers.json │ ├── common.json │ ├── ecosystem.json │ ├── events.json │ ├── footer.json │ ├── grant-program.json │ ├── header.json │ ├── home.json │ ├── position.json │ └── solutions.json ├── resources.md ├── scripts └── blog.yaml ├── src ├── app │ ├── providers │ │ ├── withApp │ │ │ ├── context.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── provider.tsx │ │ │ ├── state.ts │ │ │ └── types.ts │ │ └── withTranslation.ts │ └── scss │ │ ├── custom.scss │ │ ├── fonts.scss │ │ ├── index.scss │ │ ├── mixins.scss │ │ ├── reset.scss │ │ ├── style.scss │ │ └── vars.scss ├── entities │ ├── article │ │ ├── index.ts │ │ ├── lib │ │ │ ├── getArticleText.ts │ │ │ └── index.ts │ │ └── ui │ │ │ ├── blog-item │ │ │ ├── blog-item.module.scss │ │ │ └── index.tsx │ │ │ ├── blog-slider-layout │ │ │ ├── blog-slider-layout.module.scss │ │ │ └── index.tsx │ │ │ └── index.ts │ ├── career │ │ ├── index.ts │ │ ├── lib │ │ │ ├── getCareerUrl.ts │ │ │ └── index.ts │ │ └── ui │ │ │ ├── career-item │ │ │ ├── career-item.module.scss │ │ │ └── index.tsx │ │ │ ├── career-list │ │ │ ├── career-list.module.scss │ │ │ └── index.tsx │ │ │ └── index.ts │ └── project │ │ ├── index.ts │ │ ├── lib │ │ └── index.ts │ │ └── ui │ │ ├── index.ts │ │ └── project-item │ │ ├── index.tsx │ │ └── project-item.module.scss ├── features │ └── footer-subscribe │ │ ├── footer-subscribe.module.scss │ │ └── index.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── about │ │ ├── about.module.scss │ │ └── index.tsx │ ├── blog │ │ ├── [slug] │ │ │ ├── article.module.scss │ │ │ └── index.tsx │ │ ├── blog.module.scss │ │ └── index.tsx │ ├── brand-assets │ │ ├── brand-assets.module.scss │ │ └── index.tsx │ ├── careers │ │ ├── [slug] │ │ │ ├── index.tsx │ │ │ └── position.module.scss │ │ ├── careers.module.scss │ │ └── index.tsx │ ├── ecosystem │ │ ├── ecosystem.module.scss │ │ └── index.tsx │ ├── events │ │ ├── events.module.scss │ │ └── index.tsx │ ├── grant-program │ │ ├── grant-program.module.scss │ │ └── index.tsx │ ├── home.module.scss │ ├── index.tsx │ └── solutions │ │ ├── index.tsx │ │ └── solutions.module.scss ├── shared │ ├── components │ │ ├── @buttons │ │ │ ├── arrow-button │ │ │ │ ├── arrow-button.module.scss │ │ │ │ └── index.tsx │ │ │ ├── back-link │ │ │ │ ├── back-link.module.scss │ │ │ │ └── index.tsx │ │ │ └── button │ │ │ │ ├── button.module.scss │ │ │ │ └── index.tsx │ │ ├── accordeon │ │ │ ├── accordeon.module.scss │ │ │ └── index.tsx │ │ ├── banner │ │ │ ├── banner.module.scss │ │ │ └── index.tsx │ │ ├── grants │ │ │ ├── grants.module.scss │ │ │ └── index.tsx │ │ ├── icon │ │ │ ├── icon.module.scss │ │ │ └── index.tsx │ │ ├── label │ │ │ ├── index.tsx │ │ │ └── label.module.scss │ │ ├── link-dropdown │ │ │ ├── index.tsx │ │ │ └── link-dropdown.module.scss │ │ ├── range-calendar │ │ │ ├── assets │ │ │ │ └── arrow-left.svg │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── data.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── provider │ │ │ │ ├── context.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── with-calendar.tsx │ │ │ └── ui │ │ │ │ ├── calendar-body │ │ │ │ ├── calendar-body.module.scss │ │ │ │ └── index.tsx │ │ │ │ ├── calendar-day │ │ │ │ ├── calendar-day.module.scss │ │ │ │ └── index.tsx │ │ │ │ ├── calendar-head │ │ │ │ ├── calendar-head.module.scss │ │ │ │ └── index.tsx │ │ │ │ ├── calendar-tooltips │ │ │ │ ├── calendar-tooltips.module.scss │ │ │ │ └── index.tsx │ │ │ │ ├── index.ts │ │ │ │ └── range-calendar │ │ │ │ ├── index.tsx │ │ │ │ └── range-calendar.module.scss │ │ ├── rich-text │ │ │ ├── index.tsx │ │ │ ├── lib │ │ │ │ └── transformContent.ts │ │ │ └── rich-text.module.scss │ │ ├── select-2 │ │ │ ├── assets │ │ │ │ └── arrow-down.svg │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── getTextWidthMax.ts │ │ │ │ └── index.ts │ │ │ ├── provider │ │ │ │ ├── context.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── with-select.tsx │ │ │ ├── types.ts │ │ │ └── ui │ │ │ │ ├── index.ts │ │ │ │ ├── select-container │ │ │ │ ├── index.tsx │ │ │ │ └── select-container.module.scss │ │ │ │ ├── select-dropdown │ │ │ │ ├── index.tsx │ │ │ │ └── select-dropdown.module.scss │ │ │ │ ├── select-label │ │ │ │ ├── index.tsx │ │ │ │ └── select-label.module.scss │ │ │ │ └── select │ │ │ │ ├── index.tsx │ │ │ │ └── select.module.scss │ │ ├── taiko-select │ │ │ ├── index.tsx │ │ │ └── taiko-select.module.scss │ │ ├── trailblazer │ │ │ ├── index.tsx │ │ │ └── trailblazer.module.scss │ │ └── upload-file │ │ │ ├── index.tsx │ │ │ └── upload-file.module.scss │ ├── lib │ │ ├── api │ │ │ ├── blog-category.api.ts │ │ │ ├── blog.api.ts │ │ │ ├── career.api.ts │ │ │ ├── event.api.ts │ │ │ ├── index.ts │ │ │ └── project.api.ts │ │ ├── config │ │ │ ├── core.config.ts │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── use-aos.ts │ │ │ ├── use-click-outside.ts │ │ │ ├── use-form │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ ├── use-form-state.ts │ │ │ │ ├── use-form.ts │ │ │ │ └── utils │ │ │ │ │ ├── index.ts │ │ │ │ │ └── validate.ts │ │ │ ├── use-input.ts │ │ │ ├── use-media-query.ts │ │ │ ├── use-object-state │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── use-object-state.ts │ │ │ ├── use-scroll-progress.ts │ │ │ ├── use-search-params-setter.ts │ │ │ └── use-translation-object.ts │ │ ├── types │ │ │ ├── blog.ts │ │ │ ├── career.ts │ │ │ ├── event.ts │ │ │ ├── file.ts │ │ │ ├── global.ts │ │ │ ├── index.ts │ │ │ └── project.ts │ │ └── utils │ │ │ ├── animate.ts │ │ │ ├── aos.ts │ │ │ ├── browser.ts │ │ │ ├── file-server-path.ts │ │ │ ├── formatter.ts │ │ │ ├── instance.ts │ │ │ ├── sticky-scroll.ts │ │ │ └── typescript.ts │ └── ui │ │ ├── drag-file │ │ └── index.tsx │ │ ├── file-input │ │ ├── file-input.module.scss │ │ └── index.tsx │ │ ├── image.tsx │ │ ├── input │ │ ├── index.ts │ │ ├── lib │ │ │ ├── createClassNames.ts │ │ │ ├── index.ts │ │ │ └── normalizeProps.ts │ │ ├── types.ts │ │ └── ui │ │ │ └── input │ │ │ ├── index.tsx │ │ │ └── input.module.scss │ │ ├── media-loader │ │ ├── index.ts │ │ └── lib │ │ │ ├── index.ts │ │ │ └── loader.ts │ │ ├── media-query │ │ └── index.tsx │ │ ├── modal2 │ │ ├── index.ts │ │ ├── lib │ │ │ ├── providers │ │ │ │ ├── context.ts │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ ├── state.ts │ │ │ │ └── with-modal.tsx │ │ │ └── types.ts │ │ └── ui │ │ │ ├── index.ts │ │ │ └── modal │ │ │ ├── index.tsx │ │ │ └── modal.module.scss │ │ ├── multi-select │ │ ├── index.tsx │ │ └── multi-select.module.scss │ │ ├── select │ │ ├── index.tsx │ │ └── select.module.scss │ │ ├── share-button │ │ ├── index.tsx │ │ └── share-button.module.scss │ │ └── sprite │ │ └── index.tsx └── widgets │ ├── 01-home-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 01.01-hero-labels │ │ ├── hero-labels.module.scss │ │ └── index.tsx │ │ ├── 01.02-hero-lottie │ │ ├── hero-lottie.module.scss │ │ └── index.tsx │ │ ├── 02-about │ │ ├── about.module.scss │ │ └── index.tsx │ │ ├── 03-advantages │ │ ├── advantages.module.scss │ │ └── index.tsx │ │ ├── 04-solutions │ │ ├── index.tsx │ │ └── solutions.module.scss │ │ ├── 05-ecosystem │ │ ├── ecosystem.module.scss │ │ └── index.tsx │ │ ├── 05.01-ecosystem-dapps │ │ ├── ecosystem-dapps.module.scss │ │ └── index.tsx │ │ ├── 05.02-ecosystem-content │ │ ├── ecosystem-content.module.scss │ │ └── index.tsx │ │ ├── 06-community │ │ ├── community.module.scss │ │ └── index.tsx │ │ ├── 07-blog │ │ ├── blog.module.scss │ │ └── index.tsx │ │ ├── 08-banner │ │ ├── BannerCarousel.tsx │ │ ├── index.tsx │ │ └── trailblazer.module.scss │ │ ├── gradient-fill │ │ ├── gradient-fill.module.scss │ │ ├── index.tsx │ │ └── lib │ │ │ └── scroll-gradient.ts │ │ ├── index.ts │ │ └── sticky-content │ │ ├── index.tsx │ │ └── sticky-content.module.scss │ ├── 02-about-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-community │ │ ├── community.module.scss │ │ └── index.tsx │ │ ├── 03-mission │ │ ├── index.tsx │ │ └── mission.module.scss │ │ ├── 04-brand │ │ ├── brand.module.scss │ │ └── index.tsx │ │ ├── 05-careers │ │ ├── careers.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── 03-brand-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-logo │ │ ├── index.tsx │ │ └── logo.module.scss │ │ ├── 03-color-palette │ │ ├── color-palette.module.scss │ │ └── index.tsx │ │ ├── 04-topography │ │ ├── index.tsx │ │ └── topography.module.scss │ │ ├── 05-brand-book │ │ ├── brand-book.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── 04-career-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-about │ │ ├── about.module.scss │ │ └── index.tsx │ │ ├── 03-positions │ │ ├── index.tsx │ │ └── positions.module.scss │ │ ├── 04-contact │ │ ├── contact.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── 05-position-screens │ ├── index.ts │ ├── lib │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-content │ │ ├── content.module.scss │ │ └── index.tsx │ │ ├── apply-modal │ │ ├── apply-modal.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── 06-solution-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-platform │ │ ├── index.tsx │ │ └── platform.module.scss │ │ ├── 03-infrastructure │ │ ├── index.tsx │ │ └── infrastructure.module.scss │ │ ├── index.ts │ │ └── solutions-layout │ │ ├── index.tsx │ │ └── solutions-layout.module.scss │ ├── 07-ecosystem-screens │ ├── index.ts │ ├── lib │ │ ├── flatProjects.ts │ │ ├── getProjectsQuery.ts │ │ ├── index.ts │ │ └── types.ts │ ├── provider │ │ ├── context.tsx │ │ └── index.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 01.01-hero-dapps │ │ ├── hero-dapps.module.scss │ │ └── index.tsx │ │ ├── 02-controls │ │ ├── controls.module.scss │ │ └── index.tsx │ │ ├── 03-projects │ │ ├── index.tsx │ │ └── projects.module.scss │ │ ├── 03.01-projects-list │ │ ├── index.tsx │ │ └── projects-list.module.scss │ │ ├── 04-grant │ │ ├── grant.module.scss │ │ └── index.tsx │ │ ├── 05-disclaimer │ │ ├── disclaimer.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── 08-blog-screens │ ├── index.ts │ ├── lib │ │ ├── flatBlogs.ts │ │ ├── getBlogQuery.ts │ │ ├── index.ts │ │ ├── transform-filters.ts │ │ └── types.ts │ ├── provider │ │ ├── context.tsx │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-head │ │ ├── head.module.scss │ │ └── index.tsx │ │ ├── 02-blogs │ │ ├── blogs.module.scss │ │ └── index.tsx │ │ ├── blog-filter │ │ ├── blog-filter.module.scss │ │ └── index.tsx │ │ ├── filter-category │ │ ├── filter-category.module.scss │ │ └── index.tsx │ │ ├── filter-date │ │ ├── filter-date.module.scss │ │ └── index.tsx │ │ ├── index.ts │ │ └── side-filters │ │ ├── index.tsx │ │ └── side-filters.module.scss │ ├── 09-article-screens │ ├── index.ts │ ├── lib │ │ ├── content.tsx │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-preview │ │ ├── index.tsx │ │ └── preview.module.scss │ │ ├── 03-content │ │ ├── content.module.scss │ │ └── index.tsx │ │ ├── 04-apply │ │ ├── apply.module.scss │ │ └── index.tsx │ │ ├── 05-links │ │ ├── index.tsx │ │ └── links.module.scss │ │ ├── 06-latest-articles │ │ ├── index.tsx │ │ └── latest-articles.module.scss │ │ ├── 07-side │ │ ├── index.tsx │ │ └── side.module.scss │ │ ├── 07.01-side-nav │ │ ├── index.tsx │ │ └── side-nav.module.scss │ │ ├── 07.02-share │ │ ├── index.tsx │ │ └── share.module.scss │ │ └── index.ts │ ├── 10-event-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-events │ │ ├── events.module.scss │ │ └── index.tsx │ │ ├── 02.01-event-item │ │ ├── event-item.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── 11-grant-screens │ ├── index.ts │ ├── lib │ │ ├── index.ts │ │ └── types.ts │ └── ui │ │ ├── 01-hero │ │ ├── hero.module.scss │ │ └── index.tsx │ │ ├── 02-key-dates │ │ ├── index.tsx │ │ └── key-dates.module.scss │ │ ├── 03-mission │ │ ├── index.tsx │ │ └── mission.module.scss │ │ ├── 04-community │ │ ├── community.module.scss │ │ └── index.tsx │ │ ├── 05-tracks │ │ ├── index.tsx │ │ └── tracks.module.scss │ │ ├── 06-support │ │ ├── index.tsx │ │ └── support.module.scss │ │ ├── 07-process │ │ ├── index.tsx │ │ └── process.module.scss │ │ └── index.ts │ ├── footer │ ├── footer.module.scss │ ├── index.tsx │ ├── lib │ │ └── types.ts │ └── ui │ │ ├── footer-nav │ │ ├── footer-nav.module.scss │ │ └── index.tsx │ │ ├── footer-socials │ │ ├── footer-socials.module.scss │ │ └── index.tsx │ │ └── index.ts │ ├── header │ ├── header.module.scss │ ├── index.tsx │ └── lib │ │ └── types.ts │ ├── layouts │ ├── main-layout │ │ ├── index.tsx │ │ └── main-layout.module.scss │ └── side-layout │ │ ├── index.tsx │ │ └── side-layout.module.scss │ └── menu │ ├── index.tsx │ └── menu.module.scss └── tsconfig.json /.github/ISSUE_TEMPLATE/add_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/.github/ISSUE_TEMPLATE/add_project.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/website-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/.github/workflows/website-preview.yml -------------------------------------------------------------------------------- /.github/workflows/website-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/.github/workflows/website-production.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/README.md -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/files/ClashGrotesk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/files/ClashGrotesk.zip -------------------------------------------------------------------------------- /public/files/PublicSans.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/files/PublicSans.zip -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Medium.eot -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Medium.woff -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Semibold.eot -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Semibold.ttf -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Semibold.woff -------------------------------------------------------------------------------- /public/fonts/ClashDisplay-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashDisplay-Semibold.woff2 -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Medium.eot -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Medium.woff -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Semibold.eot -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Semibold.ttf -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Semibold.woff -------------------------------------------------------------------------------- /public/fonts/ClashGrotesk-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/ClashGrotesk-Semibold.woff2 -------------------------------------------------------------------------------- /public/fonts/Gilroy-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Gilroy-Medium.eot -------------------------------------------------------------------------------- /public/fonts/Gilroy-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Gilroy-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/Gilroy-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Gilroy-Medium.woff -------------------------------------------------------------------------------- /public/fonts/Gilroy-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Gilroy-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/HelveticaNeueCyr-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/HelveticaNeueCyr-Medium.eot -------------------------------------------------------------------------------- /public/fonts/HelveticaNeueCyr-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/HelveticaNeueCyr-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/HelveticaNeueCyr-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/HelveticaNeueCyr-Medium.woff -------------------------------------------------------------------------------- /public/fonts/HelveticaNeueCyr-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/HelveticaNeueCyr-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/Onest-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Onest-Medium.eot -------------------------------------------------------------------------------- /public/fonts/Onest-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Onest-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/Onest-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Onest-Medium.woff -------------------------------------------------------------------------------- /public/fonts/Onest-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/Onest-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/PublicSans-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Medium.eot -------------------------------------------------------------------------------- /public/fonts/PublicSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/PublicSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Medium.woff -------------------------------------------------------------------------------- /public/fonts/PublicSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/PublicSans-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Regular.eot -------------------------------------------------------------------------------- /public/fonts/PublicSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/PublicSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Regular.woff -------------------------------------------------------------------------------- /public/fonts/PublicSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/PublicSans-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-SemiBold.eot -------------------------------------------------------------------------------- /public/fonts/PublicSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-SemiBold.ttf -------------------------------------------------------------------------------- /public/fonts/PublicSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/PublicSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/fonts/PublicSans-SemiBold.woff2 -------------------------------------------------------------------------------- /public/img/about/careers-background-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/about/careers-background-mobile.jpg -------------------------------------------------------------------------------- /public/img/about/careers-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/about/careers-background.jpg -------------------------------------------------------------------------------- /public/img/about/community-circle-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/about/community-circle-mobile.svg -------------------------------------------------------------------------------- /public/img/about/community-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/about/community-circle.svg -------------------------------------------------------------------------------- /public/img/about/mission-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/about/mission-card.jpg -------------------------------------------------------------------------------- /public/img/about/mission-card.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/about/mission-card.webp -------------------------------------------------------------------------------- /public/img/apply-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/apply-form.png -------------------------------------------------------------------------------- /public/img/brand/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/background.jpg -------------------------------------------------------------------------------- /public/img/brand/fonts-grotesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/fonts-grotesk.svg -------------------------------------------------------------------------------- /public/img/brand/fonts-sans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/fonts-sans.svg -------------------------------------------------------------------------------- /public/img/brand/logo-background-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/logo-background-1.jpg -------------------------------------------------------------------------------- /public/img/brand/logo-pb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/logo-pb.svg -------------------------------------------------------------------------------- /public/img/brand/logo-pw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/logo-pw.svg -------------------------------------------------------------------------------- /public/img/brand/logo-ww.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/logo-ww.svg -------------------------------------------------------------------------------- /public/img/brand/taiko.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/brand/taiko.zip -------------------------------------------------------------------------------- /public/img/events-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/events-hero.jpg -------------------------------------------------------------------------------- /public/img/grant/hero-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/hero-banner.jpg -------------------------------------------------------------------------------- /public/img/grant/mission-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/mission-icon-1.svg -------------------------------------------------------------------------------- /public/img/grant/mission-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/mission-icon-2.svg -------------------------------------------------------------------------------- /public/img/grant/mission-icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/mission-icon-3.svg -------------------------------------------------------------------------------- /public/img/grant/mission-icon-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/mission-icon-4.svg -------------------------------------------------------------------------------- /public/img/grant/track-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/track-icon-1.svg -------------------------------------------------------------------------------- /public/img/grant/track-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/track-icon-2.svg -------------------------------------------------------------------------------- /public/img/grant/track-icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grant/track-icon-3.svg -------------------------------------------------------------------------------- /public/img/grants-banner/grants-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grants-banner/grants-lg.png -------------------------------------------------------------------------------- /public/img/grants-banner/grants-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grants-banner/grants-md.png -------------------------------------------------------------------------------- /public/img/grants-banner/grants-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grants-banner/grants-sm.png -------------------------------------------------------------------------------- /public/img/grants-banner/grants-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grants-banner/grants-xl.png -------------------------------------------------------------------------------- /public/img/grants-banner/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/grants-banner/icon.svg -------------------------------------------------------------------------------- /public/img/home/about-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/about-gradient.png -------------------------------------------------------------------------------- /public/img/home/about-gradient.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/about-gradient.webp -------------------------------------------------------------------------------- /public/img/home/ec-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ec-1.png -------------------------------------------------------------------------------- /public/img/home/ec-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ec-2.png -------------------------------------------------------------------------------- /public/img/home/ec-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ec-3.png -------------------------------------------------------------------------------- /public/img/home/ec-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ec-4.png -------------------------------------------------------------------------------- /public/img/home/ecosystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ecosystem.json -------------------------------------------------------------------------------- /public/img/home/ecosystem.mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ecosystem.mob.json -------------------------------------------------------------------------------- /public/img/home/ecosystem.mob.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/ecosystem.mob.v2.json -------------------------------------------------------------------------------- /public/img/home/hero-sprite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/home/hero-sprite.jpg -------------------------------------------------------------------------------- /public/img/icons/nav-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-about.svg -------------------------------------------------------------------------------- /public/img/icons/nav-blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-blog.svg -------------------------------------------------------------------------------- /public/img/icons/nav-brandkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-brandkit.svg -------------------------------------------------------------------------------- /public/img/icons/nav-bridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-bridge.svg -------------------------------------------------------------------------------- /public/img/icons/nav-careers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-careers.svg -------------------------------------------------------------------------------- /public/img/icons/nav-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-docs.svg -------------------------------------------------------------------------------- /public/img/icons/nav-ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-ecosystem.svg -------------------------------------------------------------------------------- /public/img/icons/nav-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-events.svg -------------------------------------------------------------------------------- /public/img/icons/nav-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-explorer.svg -------------------------------------------------------------------------------- /public/img/icons/nav-grants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-grants.svg -------------------------------------------------------------------------------- /public/img/icons/nav-news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-news.svg -------------------------------------------------------------------------------- /public/img/icons/nav-snaefell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-snaefell.svg -------------------------------------------------------------------------------- /public/img/icons/nav-solutions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-solutions.svg -------------------------------------------------------------------------------- /public/img/icons/nav-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-status.svg -------------------------------------------------------------------------------- /public/img/icons/nav-swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-swap.svg -------------------------------------------------------------------------------- /public/img/icons/nav-taikoons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-taikoons.svg -------------------------------------------------------------------------------- /public/img/icons/nav-trailblazer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/icons/nav-trailblazer.svg -------------------------------------------------------------------------------- /public/img/intro-loop-mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/intro-loop-mob.json -------------------------------------------------------------------------------- /public/img/intro-loop-mob.v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/intro-loop-mob.v3.json -------------------------------------------------------------------------------- /public/img/intro-loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/intro-loop.json -------------------------------------------------------------------------------- /public/img/intro-mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/intro-mob.json -------------------------------------------------------------------------------- /public/img/intro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/intro.json -------------------------------------------------------------------------------- /public/img/laptop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/laptop.json -------------------------------------------------------------------------------- /public/img/loader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/loader.jpg -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/menu_background.png -------------------------------------------------------------------------------- /public/img/mirror-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/mirror-logo.png -------------------------------------------------------------------------------- /public/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/og-image.png -------------------------------------------------------------------------------- /public/img/rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/rocket.json -------------------------------------------------------------------------------- /public/img/solutions/hero-gradient-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/hero-gradient-mobile.jpg -------------------------------------------------------------------------------- /public/img/solutions/hero-gradient.v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/hero-gradient.v2.jpg -------------------------------------------------------------------------------- /public/img/solutions/hero-gradient.v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/hero-gradient.v2.webp -------------------------------------------------------------------------------- /public/img/solutions/icon-bridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/icon-bridge.svg -------------------------------------------------------------------------------- /public/img/solutions/icon-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/icon-explorer.svg -------------------------------------------------------------------------------- /public/img/solutions/icon-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/icon-laptop.svg -------------------------------------------------------------------------------- /public/img/solutions/icon-rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/icon-rocket.svg -------------------------------------------------------------------------------- /public/img/solutions/icon-swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/icon-swap.svg -------------------------------------------------------------------------------- /public/img/solutions/item-bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-bridge.png -------------------------------------------------------------------------------- /public/img/solutions/item-bridge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-bridge.webp -------------------------------------------------------------------------------- /public/img/solutions/item-explorer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-explorer.jpg -------------------------------------------------------------------------------- /public/img/solutions/item-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-explorer.png -------------------------------------------------------------------------------- /public/img/solutions/item-explorer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-explorer.webp -------------------------------------------------------------------------------- /public/img/solutions/item-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-swap.png -------------------------------------------------------------------------------- /public/img/solutions/item-swap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/solutions/item-swap.webp -------------------------------------------------------------------------------- /public/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/sprite.svg -------------------------------------------------------------------------------- /public/img/tko-token-icons/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/tko-token-icons/icon-64x64.png -------------------------------------------------------------------------------- /public/img/tko-token-icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/tko-token-icons/icon.png -------------------------------------------------------------------------------- /public/img/tko-token-icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/tko-token-icons/icon.svg -------------------------------------------------------------------------------- /public/img/tko-token-icons/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/tko-token-icons/icon_512x512.png -------------------------------------------------------------------------------- /public/img/trailblazer/banner-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/banner-lg.png -------------------------------------------------------------------------------- /public/img/trailblazer/banner-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/banner-md.png -------------------------------------------------------------------------------- /public/img/trailblazer/banner-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/banner-sm.png -------------------------------------------------------------------------------- /public/img/trailblazer/banner-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/banner-xl.png -------------------------------------------------------------------------------- /public/img/trailblazer/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/icon.svg -------------------------------------------------------------------------------- /public/img/trailblazer/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/image 2.png -------------------------------------------------------------------------------- /public/img/trailblazer/trailblazer-w-taiko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/trailblazer-w-taiko.svg -------------------------------------------------------------------------------- /public/img/trailblazer/trailblazer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/img/trailblazer/trailblazer.svg -------------------------------------------------------------------------------- /public/locales/en/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/about.json -------------------------------------------------------------------------------- /public/locales/en/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/article.json -------------------------------------------------------------------------------- /public/locales/en/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/blog.json -------------------------------------------------------------------------------- /public/locales/en/brand-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/brand-assets.json -------------------------------------------------------------------------------- /public/locales/en/careers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/careers.json -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/locales/en/ecosystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/ecosystem.json -------------------------------------------------------------------------------- /public/locales/en/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/events.json -------------------------------------------------------------------------------- /public/locales/en/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/footer.json -------------------------------------------------------------------------------- /public/locales/en/grant-program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/grant-program.json -------------------------------------------------------------------------------- /public/locales/en/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/header.json -------------------------------------------------------------------------------- /public/locales/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/home.json -------------------------------------------------------------------------------- /public/locales/en/position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/position.json -------------------------------------------------------------------------------- /public/locales/en/solutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/public/locales/en/solutions.json -------------------------------------------------------------------------------- /resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/resources.md -------------------------------------------------------------------------------- /scripts/blog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/scripts/blog.yaml -------------------------------------------------------------------------------- /src/app/providers/withApp/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withApp/context.ts -------------------------------------------------------------------------------- /src/app/providers/withApp/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withApp/hooks.ts -------------------------------------------------------------------------------- /src/app/providers/withApp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withApp/index.ts -------------------------------------------------------------------------------- /src/app/providers/withApp/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withApp/provider.tsx -------------------------------------------------------------------------------- /src/app/providers/withApp/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withApp/state.ts -------------------------------------------------------------------------------- /src/app/providers/withApp/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withApp/types.ts -------------------------------------------------------------------------------- /src/app/providers/withTranslation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/providers/withTranslation.ts -------------------------------------------------------------------------------- /src/app/scss/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/custom.scss -------------------------------------------------------------------------------- /src/app/scss/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/fonts.scss -------------------------------------------------------------------------------- /src/app/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/index.scss -------------------------------------------------------------------------------- /src/app/scss/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/mixins.scss -------------------------------------------------------------------------------- /src/app/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/reset.scss -------------------------------------------------------------------------------- /src/app/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/style.scss -------------------------------------------------------------------------------- /src/app/scss/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/app/scss/vars.scss -------------------------------------------------------------------------------- /src/entities/article/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/index.ts -------------------------------------------------------------------------------- /src/entities/article/lib/getArticleText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/lib/getArticleText.ts -------------------------------------------------------------------------------- /src/entities/article/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/entities/article/ui/blog-item/blog-item.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/ui/blog-item/blog-item.module.scss -------------------------------------------------------------------------------- /src/entities/article/ui/blog-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/ui/blog-item/index.tsx -------------------------------------------------------------------------------- /src/entities/article/ui/blog-slider-layout/blog-slider-layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/ui/blog-slider-layout/blog-slider-layout.module.scss -------------------------------------------------------------------------------- /src/entities/article/ui/blog-slider-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/ui/blog-slider-layout/index.tsx -------------------------------------------------------------------------------- /src/entities/article/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/article/ui/index.ts -------------------------------------------------------------------------------- /src/entities/career/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/index.ts -------------------------------------------------------------------------------- /src/entities/career/lib/getCareerUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/lib/getCareerUrl.ts -------------------------------------------------------------------------------- /src/entities/career/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/lib/index.ts -------------------------------------------------------------------------------- /src/entities/career/ui/career-item/career-item.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/ui/career-item/career-item.module.scss -------------------------------------------------------------------------------- /src/entities/career/ui/career-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/ui/career-item/index.tsx -------------------------------------------------------------------------------- /src/entities/career/ui/career-list/career-list.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/ui/career-list/career-list.module.scss -------------------------------------------------------------------------------- /src/entities/career/ui/career-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/ui/career-list/index.tsx -------------------------------------------------------------------------------- /src/entities/career/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/career/ui/index.ts -------------------------------------------------------------------------------- /src/entities/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/project/index.ts -------------------------------------------------------------------------------- /src/entities/project/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/entities/project/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/project/ui/index.ts -------------------------------------------------------------------------------- /src/entities/project/ui/project-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/project/ui/project-item/index.tsx -------------------------------------------------------------------------------- /src/entities/project/ui/project-item/project-item.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/entities/project/ui/project-item/project-item.module.scss -------------------------------------------------------------------------------- /src/features/footer-subscribe/footer-subscribe.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/features/footer-subscribe/footer-subscribe.module.scss -------------------------------------------------------------------------------- /src/features/footer-subscribe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/features/footer-subscribe/index.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/about/about.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/about/about.module.scss -------------------------------------------------------------------------------- /src/pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/about/index.tsx -------------------------------------------------------------------------------- /src/pages/blog/[slug]/article.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/blog/[slug]/article.module.scss -------------------------------------------------------------------------------- /src/pages/blog/[slug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/blog/[slug]/index.tsx -------------------------------------------------------------------------------- /src/pages/blog/blog.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/blog/blog.module.scss -------------------------------------------------------------------------------- /src/pages/blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/blog/index.tsx -------------------------------------------------------------------------------- /src/pages/brand-assets/brand-assets.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/brand-assets/brand-assets.module.scss -------------------------------------------------------------------------------- /src/pages/brand-assets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/brand-assets/index.tsx -------------------------------------------------------------------------------- /src/pages/careers/[slug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/careers/[slug]/index.tsx -------------------------------------------------------------------------------- /src/pages/careers/[slug]/position.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/careers/[slug]/position.module.scss -------------------------------------------------------------------------------- /src/pages/careers/careers.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/careers/careers.module.scss -------------------------------------------------------------------------------- /src/pages/careers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/careers/index.tsx -------------------------------------------------------------------------------- /src/pages/ecosystem/ecosystem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/ecosystem/ecosystem.module.scss -------------------------------------------------------------------------------- /src/pages/ecosystem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/ecosystem/index.tsx -------------------------------------------------------------------------------- /src/pages/events/events.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/events/events.module.scss -------------------------------------------------------------------------------- /src/pages/events/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/events/index.tsx -------------------------------------------------------------------------------- /src/pages/grant-program/grant-program.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/grant-program/grant-program.module.scss -------------------------------------------------------------------------------- /src/pages/grant-program/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/grant-program/index.tsx -------------------------------------------------------------------------------- /src/pages/home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/home.module.scss -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/solutions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/pages/solutions/index.tsx -------------------------------------------------------------------------------- /src/pages/solutions/solutions.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shared/components/@buttons/arrow-button/arrow-button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/@buttons/arrow-button/arrow-button.module.scss -------------------------------------------------------------------------------- /src/shared/components/@buttons/arrow-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/@buttons/arrow-button/index.tsx -------------------------------------------------------------------------------- /src/shared/components/@buttons/back-link/back-link.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/@buttons/back-link/back-link.module.scss -------------------------------------------------------------------------------- /src/shared/components/@buttons/back-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/@buttons/back-link/index.tsx -------------------------------------------------------------------------------- /src/shared/components/@buttons/button/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/@buttons/button/button.module.scss -------------------------------------------------------------------------------- /src/shared/components/@buttons/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/@buttons/button/index.tsx -------------------------------------------------------------------------------- /src/shared/components/accordeon/accordeon.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/accordeon/accordeon.module.scss -------------------------------------------------------------------------------- /src/shared/components/accordeon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/accordeon/index.tsx -------------------------------------------------------------------------------- /src/shared/components/banner/banner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/banner/banner.module.scss -------------------------------------------------------------------------------- /src/shared/components/banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/banner/index.tsx -------------------------------------------------------------------------------- /src/shared/components/grants/grants.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/grants/grants.module.scss -------------------------------------------------------------------------------- /src/shared/components/grants/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/grants/index.tsx -------------------------------------------------------------------------------- /src/shared/components/icon/icon.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/icon/icon.module.scss -------------------------------------------------------------------------------- /src/shared/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/icon/index.tsx -------------------------------------------------------------------------------- /src/shared/components/label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/label/index.tsx -------------------------------------------------------------------------------- /src/shared/components/label/label.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/label/label.module.scss -------------------------------------------------------------------------------- /src/shared/components/link-dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/link-dropdown/index.tsx -------------------------------------------------------------------------------- /src/shared/components/link-dropdown/link-dropdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/link-dropdown/link-dropdown.module.scss -------------------------------------------------------------------------------- /src/shared/components/range-calendar/assets/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/assets/arrow-left.svg -------------------------------------------------------------------------------- /src/shared/components/range-calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/index.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/lib/data.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/lib/index.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/lib/types.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/lib/utils.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/provider/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/provider/context.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/provider/index.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/provider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/provider/types.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/provider/with-calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/provider/with-calendar.tsx -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-body/calendar-body.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-body/calendar-body.module.scss -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-body/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-body/index.tsx -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-day/calendar-day.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-day/calendar-day.module.scss -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-day/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-day/index.tsx -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-head/calendar-head.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-head/calendar-head.module.scss -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-head/index.tsx -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-tooltips/calendar-tooltips.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-tooltips/calendar-tooltips.module.scss -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/calendar-tooltips/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/calendar-tooltips/index.tsx -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/index.ts -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/range-calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/range-calendar/index.tsx -------------------------------------------------------------------------------- /src/shared/components/range-calendar/ui/range-calendar/range-calendar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/range-calendar/ui/range-calendar/range-calendar.module.scss -------------------------------------------------------------------------------- /src/shared/components/rich-text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/rich-text/index.tsx -------------------------------------------------------------------------------- /src/shared/components/rich-text/lib/transformContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/rich-text/lib/transformContent.ts -------------------------------------------------------------------------------- /src/shared/components/rich-text/rich-text.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/rich-text/rich-text.module.scss -------------------------------------------------------------------------------- /src/shared/components/select-2/assets/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/assets/arrow-down.svg -------------------------------------------------------------------------------- /src/shared/components/select-2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ui'; 2 | -------------------------------------------------------------------------------- /src/shared/components/select-2/lib/getTextWidthMax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/lib/getTextWidthMax.ts -------------------------------------------------------------------------------- /src/shared/components/select-2/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/lib/index.ts -------------------------------------------------------------------------------- /src/shared/components/select-2/provider/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/provider/context.ts -------------------------------------------------------------------------------- /src/shared/components/select-2/provider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './context'; -------------------------------------------------------------------------------- /src/shared/components/select-2/provider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/provider/types.ts -------------------------------------------------------------------------------- /src/shared/components/select-2/provider/with-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/provider/with-select.tsx -------------------------------------------------------------------------------- /src/shared/components/select-2/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/types.ts -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/index.ts -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select-container/index.tsx -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select-container/select-container.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select-container/select-container.module.scss -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select-dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select-dropdown/index.tsx -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select-dropdown/select-dropdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select-dropdown/select-dropdown.module.scss -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select-label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select-label/index.tsx -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select-label/select-label.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select-label/select-label.module.scss -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select/index.tsx -------------------------------------------------------------------------------- /src/shared/components/select-2/ui/select/select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/select-2/ui/select/select.module.scss -------------------------------------------------------------------------------- /src/shared/components/taiko-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/taiko-select/index.tsx -------------------------------------------------------------------------------- /src/shared/components/taiko-select/taiko-select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/taiko-select/taiko-select.module.scss -------------------------------------------------------------------------------- /src/shared/components/trailblazer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/trailblazer/index.tsx -------------------------------------------------------------------------------- /src/shared/components/trailblazer/trailblazer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/trailblazer/trailblazer.module.scss -------------------------------------------------------------------------------- /src/shared/components/upload-file/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/upload-file/index.tsx -------------------------------------------------------------------------------- /src/shared/components/upload-file/upload-file.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/components/upload-file/upload-file.module.scss -------------------------------------------------------------------------------- /src/shared/lib/api/blog-category.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/api/blog-category.api.ts -------------------------------------------------------------------------------- /src/shared/lib/api/blog.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/api/blog.api.ts -------------------------------------------------------------------------------- /src/shared/lib/api/career.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/api/career.api.ts -------------------------------------------------------------------------------- /src/shared/lib/api/event.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/api/event.api.ts -------------------------------------------------------------------------------- /src/shared/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/api/index.ts -------------------------------------------------------------------------------- /src/shared/lib/api/project.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/api/project.api.ts -------------------------------------------------------------------------------- /src/shared/lib/config/core.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/config/core.config.ts -------------------------------------------------------------------------------- /src/shared/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/config/index.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-aos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-aos.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-click-outside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-click-outside.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-form/index.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-form/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-form/types.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-form/use-form-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-form/use-form-state.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-form/use-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-form/use-form.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-form/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-form/utils/index.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-form/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-form/utils/validate.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-input.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-media-query.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-object-state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-object-state/index.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-object-state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-object-state/types.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-object-state/use-object-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-object-state/use-object-state.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-scroll-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-scroll-progress.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-search-params-setter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-search-params-setter.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/use-translation-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/hooks/use-translation-object.ts -------------------------------------------------------------------------------- /src/shared/lib/types/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/blog.ts -------------------------------------------------------------------------------- /src/shared/lib/types/career.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/career.ts -------------------------------------------------------------------------------- /src/shared/lib/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/event.ts -------------------------------------------------------------------------------- /src/shared/lib/types/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/file.ts -------------------------------------------------------------------------------- /src/shared/lib/types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/global.ts -------------------------------------------------------------------------------- /src/shared/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/index.ts -------------------------------------------------------------------------------- /src/shared/lib/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/types/project.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/animate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/animate.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/aos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/aos.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/browser.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/file-server-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/file-server-path.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/formatter.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/instance.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/sticky-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/sticky-scroll.ts -------------------------------------------------------------------------------- /src/shared/lib/utils/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/lib/utils/typescript.ts -------------------------------------------------------------------------------- /src/shared/ui/drag-file/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/drag-file/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/file-input/file-input.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/file-input/file-input.module.scss -------------------------------------------------------------------------------- /src/shared/ui/file-input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/file-input/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/image.tsx -------------------------------------------------------------------------------- /src/shared/ui/input/index.ts: -------------------------------------------------------------------------------- 1 | export { Input } from './ui/input' -------------------------------------------------------------------------------- /src/shared/ui/input/lib/createClassNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/input/lib/createClassNames.ts -------------------------------------------------------------------------------- /src/shared/ui/input/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/input/lib/index.ts -------------------------------------------------------------------------------- /src/shared/ui/input/lib/normalizeProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/input/lib/normalizeProps.ts -------------------------------------------------------------------------------- /src/shared/ui/input/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/input/types.ts -------------------------------------------------------------------------------- /src/shared/ui/input/ui/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/input/ui/input/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/input/ui/input/input.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/input/ui/input/input.module.scss -------------------------------------------------------------------------------- /src/shared/ui/media-loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; -------------------------------------------------------------------------------- /src/shared/ui/media-loader/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/media-loader/lib/index.ts -------------------------------------------------------------------------------- /src/shared/ui/media-loader/lib/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/media-loader/lib/loader.ts -------------------------------------------------------------------------------- /src/shared/ui/media-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/media-query/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/modal2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/index.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/lib/providers/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/lib/providers/context.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/lib/providers/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/lib/providers/hooks.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/lib/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/lib/providers/index.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/lib/providers/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/lib/providers/state.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/lib/providers/with-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/lib/providers/with-modal.tsx -------------------------------------------------------------------------------- /src/shared/ui/modal2/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/lib/types.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/ui/index.ts -------------------------------------------------------------------------------- /src/shared/ui/modal2/ui/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/ui/modal/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/modal2/ui/modal/modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/modal2/ui/modal/modal.module.scss -------------------------------------------------------------------------------- /src/shared/ui/multi-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/multi-select/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/multi-select/multi-select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/multi-select/multi-select.module.scss -------------------------------------------------------------------------------- /src/shared/ui/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/select/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/select/select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/select/select.module.scss -------------------------------------------------------------------------------- /src/shared/ui/share-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/share-button/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/share-button/share-button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/share-button/share-button.module.scss -------------------------------------------------------------------------------- /src/shared/ui/sprite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/shared/ui/sprite/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/01-home-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/widgets/01-home-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/01.01-hero-labels/hero-labels.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/01.01-hero-labels/hero-labels.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/01.01-hero-labels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/01.01-hero-labels/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/01.02-hero-lottie/hero-lottie.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/01.02-hero-lottie/hero-lottie.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/01.02-hero-lottie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/01.02-hero-lottie/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/02-about/about.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/02-about/about.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/02-about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/02-about/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/03-advantages/advantages.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/03-advantages/advantages.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/03-advantages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/03-advantages/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/04-solutions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/04-solutions/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/04-solutions/solutions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/04-solutions/solutions.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/05-ecosystem/ecosystem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/05-ecosystem/ecosystem.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/05-ecosystem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/05-ecosystem/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/05.01-ecosystem-dapps/ecosystem-dapps.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/05.01-ecosystem-dapps/ecosystem-dapps.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/05.01-ecosystem-dapps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/05.01-ecosystem-dapps/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/05.02-ecosystem-content/ecosystem-content.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/05.02-ecosystem-content/ecosystem-content.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/05.02-ecosystem-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/05.02-ecosystem-content/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/06-community/community.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/06-community/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/06-community/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/07-blog/blog.module.scss: -------------------------------------------------------------------------------- 1 | .blog { 2 | padding-bottom: 40px; 3 | } -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/07-blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/07-blog/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/08-banner/BannerCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/08-banner/BannerCarousel.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/08-banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/08-banner/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/08-banner/trailblazer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/08-banner/trailblazer.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/gradient-fill/gradient-fill.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/gradient-fill/gradient-fill.module.scss -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/gradient-fill/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/gradient-fill/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/gradient-fill/lib/scroll-gradient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/gradient-fill/lib/scroll-gradient.ts -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/sticky-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/sticky-content/index.tsx -------------------------------------------------------------------------------- /src/widgets/01-home-screens/ui/sticky-content/sticky-content.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/01-home-screens/ui/sticky-content/sticky-content.module.scss -------------------------------------------------------------------------------- /src/widgets/02-about-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/02-about-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/widgets/02-about-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/02-community/community.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/02-community/community.module.scss -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/02-community/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/02-community/index.tsx -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/03-mission/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/03-mission/index.tsx -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/03-mission/mission.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/03-mission/mission.module.scss -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/04-brand/brand.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/04-brand/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/04-brand/index.tsx -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/05-careers/careers.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/05-careers/careers.module.scss -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/05-careers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/05-careers/index.tsx -------------------------------------------------------------------------------- /src/widgets/02-about-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/02-about-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/02-logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/02-logo/index.tsx -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/02-logo/logo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/02-logo/logo.module.scss -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/03-color-palette/color-palette.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/03-color-palette/color-palette.module.scss -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/03-color-palette/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/03-color-palette/index.tsx -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/04-topography/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/04-topography/index.tsx -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/04-topography/topography.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/04-topography/topography.module.scss -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/05-brand-book/brand-book.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/05-brand-book/brand-book.module.scss -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/05-brand-book/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/05-brand-book/index.tsx -------------------------------------------------------------------------------- /src/widgets/03-brand-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/03-brand-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/04-career-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/04-career-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/widgets/04-career-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/02-about/about.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/02-about/about.module.scss -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/02-about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/02-about/index.tsx -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/03-positions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/03-positions/index.tsx -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/03-positions/positions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/03-positions/positions.module.scss -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/04-contact/contact.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/04-contact/contact.module.scss -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/04-contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/04-contact/index.tsx -------------------------------------------------------------------------------- /src/widgets/04-career-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/04-career-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/05-position-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/05-position-screens/lib/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/lib/hooks.ts -------------------------------------------------------------------------------- /src/widgets/05-position-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export { usePosition } from './hooks'; -------------------------------------------------------------------------------- /src/widgets/05-position-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/02-content/content.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/02-content/content.module.scss -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/02-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/02-content/index.tsx -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/apply-modal/apply-modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/apply-modal/apply-modal.module.scss -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/apply-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/apply-modal/index.tsx -------------------------------------------------------------------------------- /src/widgets/05-position-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/05-position-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/02-platform/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/02-platform/index.tsx -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/02-platform/platform.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/02-platform/platform.module.scss -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/03-infrastructure/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/03-infrastructure/index.tsx -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/03-infrastructure/infrastructure.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/03-infrastructure/infrastructure.module.scss -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/solutions-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/solutions-layout/index.tsx -------------------------------------------------------------------------------- /src/widgets/06-solution-screens/ui/solutions-layout/solutions-layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/06-solution-screens/ui/solutions-layout/solutions-layout.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/lib/flatProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/lib/flatProjects.ts -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/lib/getProjectsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/lib/getProjectsQuery.ts -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/lib/index.ts -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/provider/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/provider/context.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/provider/index.ts -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/01.01-hero-dapps/hero-dapps.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/01.01-hero-dapps/hero-dapps.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/01.01-hero-dapps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/01.01-hero-dapps/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/02-controls/controls.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/02-controls/controls.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/02-controls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/02-controls/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/03-projects/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/03-projects/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/03-projects/projects.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/03-projects/projects.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/03.01-projects-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/03.01-projects-list/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/03.01-projects-list/projects-list.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/03.01-projects-list/projects-list.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/04-grant/grant.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/04-grant/grant.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/04-grant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/04-grant/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/05-disclaimer/disclaimer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/05-disclaimer/disclaimer.module.scss -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/05-disclaimer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/05-disclaimer/index.tsx -------------------------------------------------------------------------------- /src/widgets/07-ecosystem-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/07-ecosystem-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/lib/flatBlogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/lib/flatBlogs.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/lib/getBlogQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/lib/getBlogQuery.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/lib/index.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/lib/transform-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/lib/transform-filters.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/provider/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/provider/context.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/provider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/provider/index.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/provider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/provider/types.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/01-head/head.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/01-head/head.module.scss -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/01-head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/01-head/index.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/02-blogs/blogs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/02-blogs/blogs.module.scss -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/02-blogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/02-blogs/index.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/blog-filter/blog-filter.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/blog-filter/blog-filter.module.scss -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/blog-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/blog-filter/index.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/filter-category/filter-category.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/filter-category/filter-category.module.scss -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/filter-category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/filter-category/index.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/filter-date/filter-date.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/filter-date/filter-date.module.scss -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/filter-date/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/filter-date/index.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/side-filters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/side-filters/index.tsx -------------------------------------------------------------------------------- /src/widgets/08-blog-screens/ui/side-filters/side-filters.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/08-blog-screens/ui/side-filters/side-filters.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/09-article-screens/lib/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/lib/content.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/lib/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/lib/hooks.ts -------------------------------------------------------------------------------- /src/widgets/09-article-screens/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/lib/index.ts -------------------------------------------------------------------------------- /src/widgets/09-article-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/02-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/02-preview/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/02-preview/preview.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/02-preview/preview.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/03-content/content.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/03-content/content.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/03-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/03-content/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/04-apply/apply.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/04-apply/apply.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/04-apply/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/04-apply/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/05-links/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/05-links/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/05-links/links.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/05-links/links.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/06-latest-articles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/06-latest-articles/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/06-latest-articles/latest-articles.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/07-side/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/07-side/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/07-side/side.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/07-side/side.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/07.01-side-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/07.01-side-nav/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/07.01-side-nav/side-nav.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/07.01-side-nav/side-nav.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/07.02-share/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/07.02-share/index.tsx -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/07.02-share/share.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/07.02-share/share.module.scss -------------------------------------------------------------------------------- /src/widgets/09-article-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/09-article-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/10-event-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/10-event-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils'; -------------------------------------------------------------------------------- /src/widgets/10-event-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/10-event-screens/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/lib/utils.ts -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/02-events/events.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/02-events/events.module.scss -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/02-events/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/02-events/index.tsx -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/02.01-event-item/event-item.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/02.01-event-item/event-item.module.scss -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/02.01-event-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/02.01-event-item/index.tsx -------------------------------------------------------------------------------- /src/widgets/10-event-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/10-event-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/index.ts -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/lib/index.ts: -------------------------------------------------------------------------------- 1 | export {} -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/01-hero/hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/01-hero/hero.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/01-hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/01-hero/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/02-key-dates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/02-key-dates/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/02-key-dates/key-dates.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/02-key-dates/key-dates.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/03-mission/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/03-mission/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/03-mission/mission.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/03-mission/mission.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/04-community/community.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/04-community/community.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/04-community/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/04-community/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/05-tracks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/05-tracks/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/05-tracks/tracks.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/05-tracks/tracks.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/06-support/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/06-support/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/06-support/support.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/06-support/support.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/07-process/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/07-process/index.tsx -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/07-process/process.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/07-process/process.module.scss -------------------------------------------------------------------------------- /src/widgets/11-grant-screens/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/11-grant-screens/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/footer/footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/footer.module.scss -------------------------------------------------------------------------------- /src/widgets/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/index.tsx -------------------------------------------------------------------------------- /src/widgets/footer/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/footer/ui/footer-nav/footer-nav.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/ui/footer-nav/footer-nav.module.scss -------------------------------------------------------------------------------- /src/widgets/footer/ui/footer-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/ui/footer-nav/index.tsx -------------------------------------------------------------------------------- /src/widgets/footer/ui/footer-socials/footer-socials.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/ui/footer-socials/footer-socials.module.scss -------------------------------------------------------------------------------- /src/widgets/footer/ui/footer-socials/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/ui/footer-socials/index.tsx -------------------------------------------------------------------------------- /src/widgets/footer/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/footer/ui/index.ts -------------------------------------------------------------------------------- /src/widgets/header/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/header/header.module.scss -------------------------------------------------------------------------------- /src/widgets/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/header/index.tsx -------------------------------------------------------------------------------- /src/widgets/header/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/header/lib/types.ts -------------------------------------------------------------------------------- /src/widgets/layouts/main-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/layouts/main-layout/index.tsx -------------------------------------------------------------------------------- /src/widgets/layouts/main-layout/main-layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/layouts/main-layout/main-layout.module.scss -------------------------------------------------------------------------------- /src/widgets/layouts/side-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/layouts/side-layout/index.tsx -------------------------------------------------------------------------------- /src/widgets/layouts/side-layout/side-layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/layouts/side-layout/side-layout.module.scss -------------------------------------------------------------------------------- /src/widgets/menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/menu/index.tsx -------------------------------------------------------------------------------- /src/widgets/menu/menu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/src/widgets/menu/menu.module.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taikoxyz/website-v2/HEAD/tsconfig.json --------------------------------------------------------------------------------