diff --git a/components/cards.d.ts b/components/cards.d.ts deleted file mode 100644 index c5cb25ad..00000000 --- a/components/cards.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { ReactNode, ComponentProps } from 'react'; - -declare function Card({ children, title, icon, image, arrow, href, ...props }: { - children: ReactNode; - title: string; - icon: ReactNode; - image?: boolean; - arrow?: boolean; - href: string; -}): JSX.Element; -declare function Cards({ children, num, className, style, ...props }: { - num?: number; -} & ComponentProps<'div'>): JSX.Element; - -export { Card, Cards }; diff --git a/components/cards.js b/components/cards.js deleted file mode 100644 index 65d1cbeb..00000000 --- a/components/cards.js +++ /dev/null @@ -1,92 +0,0 @@ -// src/components/cards.tsx -import cn from "clsx"; -import NextLink from "next/link"; -import { jsx, jsxs } from "react/jsx-runtime"; -var classes = { - cards: cn( - "nextra-cards nx-mt-4 nx-gap-4 nx-grid home-navigation-cards", - "nx-not-prose" - // for nextra-theme-docs - ), - card: cn( - "nextra-card nx-group nx-flex nx-flex-col nx-justify-start nx-overflow-hidden nx-rounded-lg nx-border nx-border-gray-200", - "nx-text-current nx-no-underline dark:nx-shadow-none", - "hover:nx-shadow-gray-100 dark:hover:nx-shadow-none nx-shadow-gray-100", - "active:nx-shadow-sm active:nx-shadow-gray-200", - "nx-transition-all nx-duration-200 hover:nx-border-gray-300" - ), - title: cn( - "nextra-card-title nx-flex nx-font-semibold nx-items-start nx-gap-2 px-4 nx-text-gray-700 hover:nx-text-gray-900" - ), -}; -var arrowEl = /* @__PURE__ */ jsx("span", { - className: - "nx-transition-transform nx-duration-75 group-hover:nx-translate-x-[2px]", - children: "\u2192", -}); -function Card({ - children, - title, - icon, - image, - arrow, - href, - className, - ...props -}) { - const animatedArrow = arrow ? arrowEl : null; - if (image) { - return /* @__PURE__ */ jsxs(NextLink, { - href, - className: cn( - classes.card, - "nx-bg-gray-100 nx-shadow dark:nx-border-neutral-700 dark:nx-bg-neutral-800 dark:nx-text-gray-50 hover:nx-shadow-lg dark:hover:nx-border-neutral-500 dark:hover:nx-bg-neutral-700" - ), - ...props, - children: [ - children, - /* @__PURE__ */ jsxs("span", { - className: cn( - classes.title, - "dark:nx-text-gray-300 dark:hover:nx-text-gray-100" - ), - children: [ - icon, - /* @__PURE__ */ jsxs("span", { - className: "nx-flex nx-gap-1", - children: [title, animatedArrow], - }), - ], - }), - ], - }); - } - return /* @__PURE__ */ jsx(NextLink, { - href, - className: cn( - classes.card, - "home-card nx-shadow-sm dark:nx-border-neutral-800 hover:nx-bg-slate-50 hover:nx-shadow-md dark:hover:nx-border-neutral-700", - className - ), - ...props, - children: /* @__PURE__ */ jsxs("span", { - className: cn( - classes.title, - "dark:nx-text-neutral-200 dark:hover:nx-text-neutral-50" - ), - children: [icon, title, animatedArrow], - }), - }); -} -function Cards({ children, num = 1, className, style, ...props }) { - return /* @__PURE__ */ jsx("div", { - className: cn(classes.cards, className), - ...props, - style: { - ...style, - "--rows": num, - }, - children, - }); -} -export { Card, Cards }; diff --git a/components/hero.js b/components/hero.js index ba13366e..f806cacb 100644 --- a/components/hero.js +++ b/components/hero.js @@ -1,10 +1,22 @@ -import React, { useEffect } from "react"; -import { handleHeaderButtonClick } from "../scripts/handleHeaderButtonClick"; +import React from "react"; +import Image from "next/image"; +import BGImg from "./../assets/dark/1.jpg"; +import { handleHeroButtonClick } from "../scripts/handleHeroButtonClick"; +import { handleHeroButtonClickMobile } from "../scripts/handleHeroButtonClickMobile"; function Hero() { - useEffect(() => {}, []); return (
+ adastack background texture
@@ -14,29 +26,39 @@ function Hero() { -
diff --git a/css/styles.css b/css/styles.css index 382d3dd2..1fdccad7 100644 --- a/css/styles.css +++ b/css/styles.css @@ -9,6 +9,10 @@ a { transition: color 0.3s ease; } +li a { + color: #007bff; +} + a:hover { color: #0056b3; } @@ -53,7 +57,7 @@ html[style*="color-scheme: light;"] /* Home animation */ #animation { position: relative; - height: calc(100vh - var(--nextra-navbar-height)); + height: calc(100vh - 4rem); width: calc(100vw - 16rem - 24px); z-index: 0; } @@ -65,12 +69,12 @@ article.nextra-content:has(#animation) { } html[style*="color-scheme: light;"] #animation { - background-image: url("./../assets/dark/1.jpg"); + background-color: #1c1c1c; background-size: cover; } html[style*="color-scheme: dark;"] #animation { - background-image: url("./../assets/dark/1.jpg"); + background-color: #1c1c1c; background-size: cover; } @@ -90,7 +94,7 @@ html[style*="color-scheme: dark;"] #animation { left: 0; width: 100%; height: 100%; - background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with transparency */ + background-color: rgba(0, 0, 0, 0.25); /* Dark overlay with transparency */ z-index: 1; /* Ensure it sits above other content */ } @@ -375,24 +379,30 @@ footer { .navbar-github-link { /* display: none; */ } + #animation { width: 100vw; height: calc(100vh - 4rem); overflow: hidden; } + article.nextra-content:has(#animation) { padding-right: 0px; padding-left: 0px; } + .animation-button { display: none; } + article.nextra-content:has(#animation) { overflow: visible; } + a.nextra-card { margin: 10px 10px; } + .animation-content-container { overflow: scroll; border-radius: 0px !important; @@ -403,10 +413,7 @@ footer { align-items: center; height: 100%; flex-direction: column; - } - - .animation-overlay { - background-color: rgba(0, 0, 0, 0.5) !important; + border: none; } html[style*="color-scheme: light;"] .animation-content-container { @@ -424,9 +431,11 @@ footer { width: 102vw; background: transparent; backdrop-filter: blur(0px); + border: none; border-radius: 0px; box-shadow: 0; } + ul.animation-description-text { color: white; } @@ -467,6 +476,20 @@ footer { a:has(.sidebar-menu-item) { padding: 15px 0 15px 10px; } + .animation-overlay { + background-color: rgba(0, 0, 0, 0.5) !important; + position: fixed !important; + } + + .hero-bg { + object-position: 34%; + transform: rotate(180deg); + position: fixed !important; + } + .nextra-cards.home-navigation-cards { + z-index: 10; + position: relative; + } } /* Everything Under Large Size */ @media (max-width: 991px) { @@ -482,7 +505,6 @@ footer { #animation { display: block !important; /* Show animation on larger screens */ } - .nextra-cards { display: none !important; /* Hide cards on larger screens */ } diff --git a/pages/catalyst/apply_for_funding.mdx b/pages/catalyst/apply_for_funding.mdx index bfad546d..4edc9e65 100644 --- a/pages/catalyst/apply_for_funding.mdx +++ b/pages/catalyst/apply_for_funding.mdx @@ -5,9 +5,23 @@ seo_description: # Apply for Funding -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/catalyst/catalyst_metrics.mdx b/pages/catalyst/catalyst_metrics.mdx index 8843fae8..4625047c 100644 --- a/pages/catalyst/catalyst_metrics.mdx +++ b/pages/catalyst/catalyst_metrics.mdx @@ -5,9 +5,23 @@ seo_description: # Catalyst Metrics -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/catalyst/funded_proposals.mdx b/pages/catalyst/funded_proposals.mdx index 8f164193..27d9e6cf 100644 --- a/pages/catalyst/funded_proposals.mdx +++ b/pages/catalyst/funded_proposals.mdx @@ -5,9 +5,23 @@ seo_description: # Funded Proposals -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/catalyst/other_catalyst_resources.mdx b/pages/catalyst/other_catalyst_resources.mdx index bfad546d..4edc9e65 100644 --- a/pages/catalyst/other_catalyst_resources.mdx +++ b/pages/catalyst/other_catalyst_resources.mdx @@ -5,9 +5,23 @@ seo_description: # Apply for Funding -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/catalyst/vote_in_catalyst.mdx b/pages/catalyst/vote_in_catalyst.mdx index 754a35fc..324e9986 100644 --- a/pages/catalyst/vote_in_catalyst.mdx +++ b/pages/catalyst/vote_in_catalyst.mdx @@ -5,9 +5,23 @@ seo_description: # Vote in Catalyst -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/discord.mdx b/pages/community/discord.mdx index 25b12f28..3d4e3122 100644 --- a/pages/community/discord.mdx +++ b/pages/community/discord.mdx @@ -5,9 +5,23 @@ seo_description: # Discord -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/events.mdx b/pages/community/events.mdx index 8a8d7f32..74cbf335 100644 --- a/pages/community/events.mdx +++ b/pages/community/events.mdx @@ -5,9 +5,23 @@ seo_description: # Events -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/news_and_blogs.mdx b/pages/community/news_and_blogs.mdx index 23fd3929..df18d6a1 100644 --- a/pages/community/news_and_blogs.mdx +++ b/pages/community/news_and_blogs.mdx @@ -5,9 +5,23 @@ seo_description: # News and Blogs -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/podcasts.mdx b/pages/community/podcasts.mdx index 744ed33d..e982dac3 100644 --- a/pages/community/podcasts.mdx +++ b/pages/community/podcasts.mdx @@ -5,9 +5,23 @@ seo_description: # Podcasts -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/reddit_and_forums.mdx b/pages/community/reddit_and_forums.mdx index 1dab078e..171d5c0d 100644 --- a/pages/community/reddit_and_forums.mdx +++ b/pages/community/reddit_and_forums.mdx @@ -5,9 +5,23 @@ seo_description: # Reddit and Forums -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/social_bots.mdx b/pages/community/social_bots.mdx index 04cf86c0..db8ca83b 100644 --- a/pages/community/social_bots.mdx +++ b/pages/community/social_bots.mdx @@ -5,9 +5,23 @@ seo_description: # Social Bots -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/telegram.mdx b/pages/community/telegram.mdx index e46df059..2582ef73 100644 --- a/pages/community/telegram.mdx +++ b/pages/community/telegram.mdx @@ -5,9 +5,23 @@ seo_description: # Telegram -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/x.mdx b/pages/community/x.mdx index ffd7875c..a0594370 100644 --- a/pages/community/x.mdx +++ b/pages/community/x.mdx @@ -5,9 +5,23 @@ seo_description: # Cardano on X -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/community/youtube.mdx b/pages/community/youtube.mdx index 891a897c..ce4968e7 100644 --- a/pages/community/youtube.mdx +++ b/pages/community/youtube.mdx @@ -5,9 +5,23 @@ seo_description: # YouTube Channels -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/daos/dao_explorers.mdx b/pages/daos/dao_explorers.mdx index 6ef939da..88b81cd3 100644 --- a/pages/daos/dao_explorers.mdx +++ b/pages/daos/dao_explorers.mdx @@ -5,9 +5,23 @@ seo_description: # DAO Explorers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/daos/dao_management_software.mdx b/pages/daos/dao_management_software.mdx index 9642566e..527fbbbf 100644 --- a/pages/daos/dao_management_software.mdx +++ b/pages/daos/dao_management_software.mdx @@ -5,9 +5,23 @@ seo_description: # DAO Management Software -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/daos/multisig.mdx b/pages/daos/multisig.mdx index 0d3bbb77..16f06bbb 100644 --- a/pages/daos/multisig.mdx +++ b/pages/daos/multisig.mdx @@ -5,9 +5,23 @@ seo_description: # Multisig -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/dapps/dapp_explorers.mdx b/pages/dapps/dapp_explorers.mdx index 6b074c3c..308b4697 100644 --- a/pages/dapps/dapp_explorers.mdx +++ b/pages/dapps/dapp_explorers.mdx @@ -5,9 +5,23 @@ seo_description: # Dapp Explorers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/dapps/identity_dapps.mdx b/pages/dapps/identity_dapps.mdx index 52cf93d6..00361043 100644 --- a/pages/dapps/identity_dapps.mdx +++ b/pages/dapps/identity_dapps.mdx @@ -5,9 +5,23 @@ seo_description: # Identity Dapps -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/dapps/project_analysis_tools.mdx b/pages/dapps/project_analysis_tools.mdx index 20c2a96b..a1546e39 100644 --- a/pages/dapps/project_analysis_tools.mdx +++ b/pages/dapps/project_analysis_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Project Analysis Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/apis.mdx b/pages/development/apis.mdx index 04bd192b..e6d27b64 100644 --- a/pages/development/apis.mdx +++ b/pages/development/apis.mdx @@ -5,9 +5,23 @@ seo_description: # APIs -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/cardano_cli.mdx b/pages/development/cardano_cli.mdx index ee825014..ac6fa0fe 100644 --- a/pages/development/cardano_cli.mdx +++ b/pages/development/cardano_cli.mdx @@ -5,9 +5,23 @@ seo_description: # Cardano-CLI -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/cardano_node.mdx b/pages/development/cardano_node.mdx index ee177c88..b5993282 100644 --- a/pages/development/cardano_node.mdx +++ b/pages/development/cardano_node.mdx @@ -5,9 +5,23 @@ seo_description: # Cardano Node -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/code_environments.mdx b/pages/development/code_environments.mdx index 26e3fa7d..80c5d94a 100644 --- a/pages/development/code_environments.mdx +++ b/pages/development/code_environments.mdx @@ -5,9 +5,23 @@ seo_description: # Code Environments -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/code_libraries.mdx b/pages/development/code_libraries.mdx index 3d40b22a..5c10b2c4 100644 --- a/pages/development/code_libraries.mdx +++ b/pages/development/code_libraries.mdx @@ -5,9 +5,23 @@ seo_description: # Code Libraries -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/dev_shops.mdx b/pages/development/dev_shops.mdx index a6c34bf3..3791cd0e 100644 --- a/pages/development/dev_shops.mdx +++ b/pages/development/dev_shops.mdx @@ -5,9 +5,23 @@ seo_description: # Dev Shops -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/developer_forums.mdx b/pages/development/developer_forums.mdx index bdfabd13..37dc990f 100644 --- a/pages/development/developer_forums.mdx +++ b/pages/development/developer_forums.mdx @@ -5,9 +5,23 @@ seo_description: # Developer Forums -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/developer_jobs.mdx b/pages/development/developer_jobs.mdx index 4c5ff5e0..5659a35d 100644 --- a/pages/development/developer_jobs.mdx +++ b/pages/development/developer_jobs.mdx @@ -5,9 +5,23 @@ seo_description: # Developer Jobs -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/developer_tool_explorers.mdx b/pages/development/developer_tool_explorers.mdx index 698c8cad..2cde8d93 100644 --- a/pages/development/developer_tool_explorers.mdx +++ b/pages/development/developer_tool_explorers.mdx @@ -5,9 +5,23 @@ seo_description: # Developer Tool Explorers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/documentation.mdx b/pages/development/documentation.mdx index 1c98a2e5..a19f94d3 100644 --- a/pages/development/documentation.mdx +++ b/pages/development/documentation.mdx @@ -5,9 +5,23 @@ seo_description: # Documentation -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/learning_platforms.mdx b/pages/development/learning_platforms.mdx index 20250da7..4f1192e4 100644 --- a/pages/development/learning_platforms.mdx +++ b/pages/development/learning_platforms.mdx @@ -5,9 +5,23 @@ seo_description: # Learning Platforms -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/oracles.mdx b/pages/development/oracles.mdx index 6d46bb6c..644c60dc 100644 --- a/pages/development/oracles.mdx +++ b/pages/development/oracles.mdx @@ -5,9 +5,23 @@ seo_description: # Oracles -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/smart_contract_auditors.mdx b/pages/development/smart_contract_auditors.mdx index 90a1809c..9a46e2d8 100644 --- a/pages/development/smart_contract_auditors.mdx +++ b/pages/development/smart_contract_auditors.mdx @@ -5,9 +5,23 @@ seo_description: # Smart Contract Auditors -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/smart_contract_languages.mdx b/pages/development/smart_contract_languages.mdx index a12b606f..e899dd47 100644 --- a/pages/development/smart_contract_languages.mdx +++ b/pages/development/smart_contract_languages.mdx @@ -5,9 +5,23 @@ seo_description: # Smart Contract Languages -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/testnets.mdx b/pages/development/testnets.mdx index dc501216..a38c0f8b 100644 --- a/pages/development/testnets.mdx +++ b/pages/development/testnets.mdx @@ -5,9 +5,23 @@ seo_description: # Testnets -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/development/utility_tools.mdx b/pages/development/utility_tools.mdx index 86e3df04..780b3126 100644 --- a/pages/development/utility_tools.mdx +++ b/pages/development/utility_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Utility Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/bridges.mdx b/pages/ecosystem/bridges.mdx index 2658546a..5981ef5c 100644 --- a/pages/ecosystem/bridges.mdx +++ b/pages/ecosystem/bridges.mdx @@ -5,9 +5,23 @@ seo_description: # Bridges -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/merchandise.mdx b/pages/ecosystem/merchandise.mdx index 350c6412..e9782042 100644 --- a/pages/ecosystem/merchandise.mdx +++ b/pages/ecosystem/merchandise.mdx @@ -5,9 +5,23 @@ seo_description: # Merchandise -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/native_tokens.mdx b/pages/ecosystem/native_tokens.mdx index fa24565a..ad821946 100644 --- a/pages/ecosystem/native_tokens.mdx +++ b/pages/ecosystem/native_tokens.mdx @@ -5,9 +5,23 @@ seo_description: # Native Tokens -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/organizations.mdx b/pages/ecosystem/organizations.mdx index 9ac8ae09..dd49b2ce 100644 --- a/pages/ecosystem/organizations.mdx +++ b/pages/ecosystem/organizations.mdx @@ -5,9 +5,23 @@ seo_description: # Organizations -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/portfolio_trackers.mdx b/pages/ecosystem/portfolio_trackers.mdx index f83c33a3..ed8362b9 100644 --- a/pages/ecosystem/portfolio_trackers.mdx +++ b/pages/ecosystem/portfolio_trackers.mdx @@ -5,9 +5,23 @@ seo_description: # Portfolio Trackers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/project_funding.mdx b/pages/ecosystem/project_funding.mdx index 762e3a74..34c2da6a 100644 --- a/pages/ecosystem/project_funding.mdx +++ b/pages/ecosystem/project_funding.mdx @@ -5,9 +5,23 @@ seo_description: # Project Funding -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/scaling_initiatives.mdx b/pages/ecosystem/scaling_initiatives.mdx index 8f3812b7..1c15fc45 100644 --- a/pages/ecosystem/scaling_initiatives.mdx +++ b/pages/ecosystem/scaling_initiatives.mdx @@ -5,9 +5,23 @@ seo_description: # Scaling Initiatives -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/security_tools.mdx b/pages/ecosystem/security_tools.mdx index ad8d1142..a568aac1 100644 --- a/pages/ecosystem/security_tools.mdx +++ b/pages/ecosystem/security_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Security Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/stablecoins.mdx b/pages/ecosystem/stablecoins.mdx index 8244b82b..cd70d72e 100644 --- a/pages/ecosystem/stablecoins.mdx +++ b/pages/ecosystem/stablecoins.mdx @@ -5,9 +5,23 @@ seo_description: # Stablecoins -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/tax_tools.mdx b/pages/ecosystem/tax_tools.mdx index a6bebdb4..0424c63c 100644 --- a/pages/ecosystem/tax_tools.mdx +++ b/pages/ecosystem/tax_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Tax Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/wallet_tools.mdx b/pages/ecosystem/wallet_tools.mdx index 5b3ccbc5..a9ae1a9f 100644 --- a/pages/ecosystem/wallet_tools.mdx +++ b/pages/ecosystem/wallet_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Wallet Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/ecosystem/wallets.mdx b/pages/ecosystem/wallets.mdx index 7e7bc26b..26659f7d 100644 --- a/pages/ecosystem/wallets.mdx +++ b/pages/ecosystem/wallets.mdx @@ -5,9 +5,23 @@ seo_description: # Wallets -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/gaming/gambling.mdx b/pages/gaming/gambling.mdx index c3daddd9..99e3b4b5 100644 --- a/pages/gaming/gambling.mdx +++ b/pages/gaming/gambling.mdx @@ -5,9 +5,23 @@ seo_description: # Gambling -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/gaming/game_explorers.mdx b/pages/gaming/game_explorers.mdx index 1bfce91a..ce9bc06f 100644 --- a/pages/gaming/game_explorers.mdx +++ b/pages/gaming/game_explorers.mdx @@ -5,9 +5,23 @@ seo_description: # Game Explorers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/gaming/game_studios.mdx b/pages/gaming/game_studios.mdx index b7e64d82..c5540537 100644 --- a/pages/gaming/game_studios.mdx +++ b/pages/gaming/game_studios.mdx @@ -5,9 +5,23 @@ seo_description: # Game Studios -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/gaming/games.mdx b/pages/gaming/games.mdx index 5242b637..f2c67036 100644 --- a/pages/gaming/games.mdx +++ b/pages/gaming/games.mdx @@ -5,9 +5,23 @@ seo_description: # Games -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/gaming/metaverses.mdx b/pages/gaming/metaverses.mdx index b9c92ae5..acd6eaa1 100644 --- a/pages/gaming/metaverses.mdx +++ b/pages/gaming/metaverses.mdx @@ -5,9 +5,23 @@ seo_description: # Metaverses -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/governance/cips.mdx b/pages/governance/cips.mdx index e53707a3..3be75dbb 100644 --- a/pages/governance/cips.mdx +++ b/pages/governance/cips.mdx @@ -5,9 +5,23 @@ seo_description: # CIPs -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/governance/governance_resources.mdx b/pages/governance/governance_resources.mdx index e4adca4f..8f36ab93 100644 --- a/pages/governance/governance_resources.mdx +++ b/pages/governance/governance_resources.mdx @@ -5,9 +5,23 @@ seo_description: # Governance Resources -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/governance/voting_and_dreps.mdx b/pages/governance/voting_and_dreps.mdx index a1af7f7c..3439ef55 100644 --- a/pages/governance/voting_and_dreps.mdx +++ b/pages/governance/voting_and_dreps.mdx @@ -5,9 +5,23 @@ seo_description: # Voting and DReps -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/index.mdx b/pages/index.mdx index 17691c1e..e7a837c7 100644 --- a/pages/index.mdx +++ b/pages/index.mdx @@ -1,119 +1,9 @@ --- seo_title: Explore Cardano -# Leave seo_description blank on the index page so it uses the standard one defined in theme.config.tsx +# Leave seo_description empty on the index page so it uses the default defined in theme.config.tsx seo_description: --- -import { - CardsIcon, - OneIcon, - WarningIcon, - CardanoLogo, -} from "@components/icons"; - import { Hero } from "../components/hero.js"; -import { Card, Cards } from "../components/cards.js"; -import { handleCardClick } from "../scripts/handleCardClick.js"; - - - handleCardClick(event)} - icon={} - title="Intro to Cardano" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Staking" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="On-Chain" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Ecosystem" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Community" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Dapps" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="NFTs" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Gaming" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Catalyst" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Governance" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="DAOs" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Development" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Side Chains" - className="bg-light-color bg-dark-color" - href="#" - /> - handleCardClick(event)} - icon={} - title="Layer 2s" - className="bg-light-color bg-dark-color" - href="#" - /> - diff --git a/pages/intro_to_cardano/learn_more.mdx b/pages/intro_to_cardano/learn_more.mdx index 2703d4b6..7ab6f3a0 100644 --- a/pages/intro_to_cardano/learn_more.mdx +++ b/pages/intro_to_cardano/learn_more.mdx @@ -27,7 +27,8 @@ Full courses to learn about Cardano. Videos that explain the Cardano blockchain and what is being built on it. - [Charles Hoskinson Whiteboard](https://www.youtube.com/watch?v=Ja9D0kpksxw): IOG Founder Charles Hoskinson explains Cardano in this classic video. -- [How do you Explain the Mission of Cardano](https://www.youtube.com/watch?v=l_Nv0-PVrnM): IOG describes the positive goals of Cardano. +- [How do you Explain the Mission of Cardano](https://www.youtube.com/watch?v=l_Nv0-PVrnM): Understand the positive impact mission of Cardano. +- [Discover Cardano](https://www.youtube.com/watch?v=CYzcvZ2Hf7w): A brief overview of how Cardano empowers individuals in the digital era, created by Stake with Robot. ### Guides and Reports diff --git a/pages/layer_2s/hydra.mdx b/pages/layer_2s/hydra.mdx index bc0184d2..adca3d90 100644 --- a/pages/layer_2s/hydra.mdx +++ b/pages/layer_2s/hydra.mdx @@ -5,9 +5,23 @@ seo_description: # Hydra -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/layer_2s/other_layer_2s.mdx b/pages/layer_2s/other_layer_2s.mdx index 0b71ff7e..0dbeae59 100644 --- a/pages/layer_2s/other_layer_2s.mdx +++ b/pages/layer_2s/other_layer_2s.mdx @@ -5,9 +5,23 @@ seo_description: # Other Layer 2s -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/layer_2s/what_are_layer_2s.mdx b/pages/layer_2s/what_are_layer_2s.mdx index 2ff2508c..7f21c83e 100644 --- a/pages/layer_2s/what_are_layer_2s.mdx +++ b/pages/layer_2s/what_are_layer_2s.mdx @@ -5,9 +5,23 @@ seo_description: # What are Layer 2s? -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/domains_and_handles.mdx b/pages/nfts/domains_and_handles.mdx index 4ea788f2..46f77143 100644 --- a/pages/nfts/domains_and_handles.mdx +++ b/pages/nfts/domains_and_handles.mdx @@ -5,9 +5,23 @@ seo_description: # Handles and Domains -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/drop_calendars.mdx b/pages/nfts/drop_calendars.mdx index e8bdcce1..0aba8829 100644 --- a/pages/nfts/drop_calendars.mdx +++ b/pages/nfts/drop_calendars.mdx @@ -5,9 +5,23 @@ seo_description: # Drop Calendars -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/minting_services.mdx b/pages/nfts/minting_services.mdx index 34c20c7b..6c14b9a3 100644 --- a/pages/nfts/minting_services.mdx +++ b/pages/nfts/minting_services.mdx @@ -5,9 +5,23 @@ seo_description: # Minting Services -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/nft_galleries.mdx b/pages/nfts/nft_galleries.mdx index f3091091..b9a584d6 100644 --- a/pages/nfts/nft_galleries.mdx +++ b/pages/nfts/nft_galleries.mdx @@ -5,9 +5,23 @@ seo_description: # NFT Galleries -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/nft_lending_and_borrowing.mdx b/pages/nfts/nft_lending_and_borrowing.mdx index fa0e01fd..1c16d1e7 100644 --- a/pages/nfts/nft_lending_and_borrowing.mdx +++ b/pages/nfts/nft_lending_and_borrowing.mdx @@ -5,9 +5,23 @@ seo_description: # NFT Lending and Borrowing -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/nft_market_metrics.mdx b/pages/nfts/nft_market_metrics.mdx index 577dfba4..1dcdb997 100644 --- a/pages/nfts/nft_market_metrics.mdx +++ b/pages/nfts/nft_market_metrics.mdx @@ -5,9 +5,23 @@ seo_description: # NFT Market Metrics -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/nft_marketplaces.mdx b/pages/nfts/nft_marketplaces.mdx index 562f751b..e3a9df99 100644 --- a/pages/nfts/nft_marketplaces.mdx +++ b/pages/nfts/nft_marketplaces.mdx @@ -5,9 +5,23 @@ seo_description: # NFT Marketplaces -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/nfts/other_nft_tools.mdx b/pages/nfts/other_nft_tools.mdx index 93425e09..411372cd 100644 --- a/pages/nfts/other_nft_tools.mdx +++ b/pages/nfts/other_nft_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Other NFT Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/circulating_supply.mdx b/pages/on_chain_metrics/circulating_supply.mdx index 3ee236e9..3cd24c5c 100644 --- a/pages/on_chain_metrics/circulating_supply.mdx +++ b/pages/on_chain_metrics/circulating_supply.mdx @@ -5,9 +5,23 @@ seo_description: # Circulating Supply -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/decentralization_metrics.mdx b/pages/on_chain_metrics/decentralization_metrics.mdx index edbcd689..8e1e2c3c 100644 --- a/pages/on_chain_metrics/decentralization_metrics.mdx +++ b/pages/on_chain_metrics/decentralization_metrics.mdx @@ -5,9 +5,23 @@ seo_description: # Decentralization Metrics -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/monetary_policy.mdx b/pages/on_chain_metrics/monetary_policy.mdx index 30e6a7a5..40fc492e 100644 --- a/pages/on_chain_metrics/monetary_policy.mdx +++ b/pages/on_chain_metrics/monetary_policy.mdx @@ -5,9 +5,23 @@ seo_description: # Monetary Policy -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/network_activity.mdx b/pages/on_chain_metrics/network_activity.mdx index 0ec10809..d3158e7e 100644 --- a/pages/on_chain_metrics/network_activity.mdx +++ b/pages/on_chain_metrics/network_activity.mdx @@ -5,9 +5,23 @@ seo_description: # Network Activity -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/on_chain_dashboards.mdx b/pages/on_chain_metrics/on_chain_dashboards.mdx index c537a7e4..d678106c 100644 --- a/pages/on_chain_metrics/on_chain_dashboards.mdx +++ b/pages/on_chain_metrics/on_chain_dashboards.mdx @@ -5,9 +5,23 @@ seo_description: # On-Chain Dashboards -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/other_metrics.mdx b/pages/on_chain_metrics/other_metrics.mdx index bd46f7f5..1cb851ba 100644 --- a/pages/on_chain_metrics/other_metrics.mdx +++ b/pages/on_chain_metrics/other_metrics.mdx @@ -5,9 +5,23 @@ seo_description: # Other Metrics -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/staking_metrics.mdx b/pages/on_chain_metrics/staking_metrics.mdx index fd292648..be276222 100644 --- a/pages/on_chain_metrics/staking_metrics.mdx +++ b/pages/on_chain_metrics/staking_metrics.mdx @@ -5,9 +5,23 @@ seo_description: # Staking Metrics -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/tokenomics_and_distribution.mdx b/pages/on_chain_metrics/tokenomics_and_distribution.mdx index 4831e9cd..fe6e5f5d 100644 --- a/pages/on_chain_metrics/tokenomics_and_distribution.mdx +++ b/pages/on_chain_metrics/tokenomics_and_distribution.mdx @@ -5,9 +5,23 @@ seo_description: # Tokenomics and Distribution -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/total_value_locked.mdx b/pages/on_chain_metrics/total_value_locked.mdx index 8a23e111..2b6aec75 100644 --- a/pages/on_chain_metrics/total_value_locked.mdx +++ b/pages/on_chain_metrics/total_value_locked.mdx @@ -5,9 +5,23 @@ seo_description: # Total Value Locked -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/on_chain_metrics/treasury.mdx b/pages/on_chain_metrics/treasury.mdx index cc016f11..8ff9fabc 100644 --- a/pages/on_chain_metrics/treasury.mdx +++ b/pages/on_chain_metrics/treasury.mdx @@ -5,9 +5,23 @@ seo_description: # Treasury -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/sidechains/midnight.mdx b/pages/sidechains/midnight.mdx index 6ad1a82c..48e28e02 100644 --- a/pages/sidechains/midnight.mdx +++ b/pages/sidechains/midnight.mdx @@ -5,9 +5,23 @@ seo_description: # Midnight -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/sidechains/milkomeda.mdx b/pages/sidechains/milkomeda.mdx index abf4d3fe..3745a51e 100644 --- a/pages/sidechains/milkomeda.mdx +++ b/pages/sidechains/milkomeda.mdx @@ -5,9 +5,23 @@ seo_description: # Milkomeda -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/sidechains/other_sidechains.mdx b/pages/sidechains/other_sidechains.mdx index 1ff3ec08..c6d05bb0 100644 --- a/pages/sidechains/other_sidechains.mdx +++ b/pages/sidechains/other_sidechains.mdx @@ -5,9 +5,23 @@ seo_description: # Other Side Chains -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/sidechains/singularitynet.mdx b/pages/sidechains/singularitynet.mdx index dd22683d..f4147d6a 100644 --- a/pages/sidechains/singularitynet.mdx +++ b/pages/sidechains/singularitynet.mdx @@ -5,9 +5,23 @@ seo_description: # SingularityNet -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/sidechains/what_are_sidechains.mdx b/pages/sidechains/what_are_sidechains.mdx index 4326e6a6..7d2f4e1d 100644 --- a/pages/sidechains/what_are_sidechains.mdx +++ b/pages/sidechains/what_are_sidechains.mdx @@ -5,9 +5,23 @@ seo_description: # What are Side Chains? -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/sidechains/world_mobile.mdx b/pages/sidechains/world_mobile.mdx index ea0d4053..838f49a4 100644 --- a/pages/sidechains/world_mobile.mdx +++ b/pages/sidechains/world_mobile.mdx @@ -5,9 +5,23 @@ seo_description: # World Mobile -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/open_ispos.mdx b/pages/staking/open_ispos.mdx index d88db8b3..5f9b8a11 100644 --- a/pages/staking/open_ispos.mdx +++ b/pages/staking/open_ispos.mdx @@ -5,9 +5,23 @@ seo_description: # Open ISPOs -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/other_staking_tools.mdx b/pages/staking/other_staking_tools.mdx index 6fcc976b..a2208144 100644 --- a/pages/staking/other_staking_tools.mdx +++ b/pages/staking/other_staking_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Other Staking Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/pool_monitoring_tools.mdx b/pages/staking/pool_monitoring_tools.mdx index 2cfa6f9f..eb273ddb 100644 --- a/pages/staking/pool_monitoring_tools.mdx +++ b/pages/staking/pool_monitoring_tools.mdx @@ -5,9 +5,23 @@ seo_description: # Stake Pool Monitoring Tools -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/reward_calculators.mdx b/pages/staking/reward_calculators.mdx index 38f0c6ac..0fd1b7d0 100644 --- a/pages/staking/reward_calculators.mdx +++ b/pages/staking/reward_calculators.mdx @@ -5,9 +5,23 @@ seo_description: # Reward Calculators -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/reward_trackers.mdx b/pages/staking/reward_trackers.mdx index 3030c526..3a9e6063 100644 --- a/pages/staking/reward_trackers.mdx +++ b/pages/staking/reward_trackers.mdx @@ -5,9 +5,23 @@ seo_description: # Reward Trackers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/set_up_a_stake_pool.mdx b/pages/staking/set_up_a_stake_pool.mdx index a6e6132f..953cda51 100644 --- a/pages/staking/set_up_a_stake_pool.mdx +++ b/pages/staking/set_up_a_stake_pool.mdx @@ -5,9 +5,23 @@ seo_description: # Set up a Stake Pool -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/spo_chat_groups.mdx b/pages/staking/spo_chat_groups.mdx index 31b56247..5632faac 100644 --- a/pages/staking/spo_chat_groups.mdx +++ b/pages/staking/spo_chat_groups.mdx @@ -5,9 +5,23 @@ seo_description: # SPO Chat Groups -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/stake_pool_alliances.mdx b/pages/staking/stake_pool_alliances.mdx index 928bd0d2..77e7baa9 100644 --- a/pages/staking/stake_pool_alliances.mdx +++ b/pages/staking/stake_pool_alliances.mdx @@ -5,9 +5,23 @@ seo_description: # Stake Pool Alliances -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/pages/staking/stake_pool_explorers.mdx b/pages/staking/stake_pool_explorers.mdx index 897adddd..9e3c6b89 100644 --- a/pages/staking/stake_pool_explorers.mdx +++ b/pages/staking/stake_pool_explorers.mdx @@ -5,9 +5,23 @@ seo_description: # Stake Pool Explorers -This content is not available yet because Adastack is still in development. Your support in the form of a vote in [Catalyst Fund 12](https://cardano.ideascale.com/c/idea/119612) would greatly help us to complete the website quickly. Our goal is to offer the Cardano community an open-source, regularly updated, SEO-friendly library of Cardano tools and resources. +### This Page is Under Construction -### Website Features: +- Adastack is still in development, so this page's content is not available quite yet. +- To help expedite the site's development and get resources on every page, consider supporting our proposal in Catalyst Fund 12! 🙏 +- Adastack is a wide-ranging collection of 100+ pages of Cardano resources. The site is designed to be beginner-friendly, community-focused, carefully organized, SEO-ready, and open source. + +### Follow us for Updates + +- [Adastack Twitter](https://twitter.com/adastackio) +- [Adastack GitHub](https://github.com/adastackio/adastack.io) +- [Dev's Twitter](https://twitter.com/tuckertriggs) + +### Website Features + +Here we provide further detail about the key features of the website: - **Comprehensive** — Once all inital content is added there will be 1500+ Cardano tools and links on 100+ resource pages. See a sample resource page: [Blockchain Explorers](https://www.adastack.io/on_chain/blockchain_explorers). @@ -15,9 +29,9 @@ This content is not available yet because Adastack is still in development. Your - **Open-Source** — Adastack.io is fully [open-source](https://github.com/adastackio/adastack.io) under the [MIT license](https://github.com/adastackio/adastack.io/blob/main/LICENSE), allowing anyone can view, copy, or suggest modifications to the code. We actively engage in the Cardano community and will incorporate feedback and suggestions. Contributions help the website stay up-to-date and accurate. -- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and an "Edit this page" button on every page that allows for easy contributions. +- **Fast** — The website is designed for speed, utilizing a popular and modern technology stack of React, Next.js, Tailwind, Markdown, and Git/Github. It also uses the [Nextra theme](https://nextra.site/), which is favored for large documentation websites including Cardano's [Aiken](https://aiken-lang.org/fundamentals/getting-started) and [Demeter.run](https://docs.demeter.run/). The theme is suitable for Adastack because it has optimized search, simple navigation, excellent readability, and allows for easy contributions. -- **SEO Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. +- **SEO-Optimized** — The site's content is optimized for search engines to help increase its ranking on search. Custom meta-titles and meta-descriptions are added for each page to boost search engine visibility. The site also uses a service called [indexed.pro](https://indexed.pro/) to automatically submit the site to Google after any change to ensure that the freshest content is always used. Ultimately Adastack should help improve search results in general for Cardano queries on search engines and LLMs. - **Quickly Searchable** — Adastack uses [FlexSearch](https://github.com/nextapps-de/flexsearch), a search tool that pre-indexes all content for real-time search results in the website's search bar. @@ -25,16 +39,10 @@ This content is not available yet because Adastack is still in development. Your - **Onboarding Guides** — The website features over 10 guides designed to educate newcomers about foundational Cardano topics and help them get started using the chain. These guides cover essential topics such as [What is Blockchain?](https://www.adastack.io/intro_to_cardano/what_is_blockchain), [Start Using Cardano](https://www.adastack.io/intro_to_cardano/start_using_cardano), [How to Start Staking](https://www.adastack.io/staking/how_to_start_staking), and more. -- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or updating content. +- **Contributions are Encouraged** — Each page on the site has an "edit this page" button that directs users to the GitHub web interface to submit a contribution. This straightforward process welcomes all users, regardless of technical expertise, to enhance the site by adding resources or improving content. -- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring usability on desktops, tablets, phones, and other devices. +- **Responsive** — The site is responsive and adapts to different screen sizes, ensuring its usability on desktops, tablets, phones, and other devices. - **Niche Categorization** — Resources are organized into precise and refined categories so people searching can find a page that exactly corresponds to their search. For example, rather than a general category such as "Cardano Social Media," adastack has subcategory pages such as "YouTube", "Twitter", "Podcasts", "Newsletters", "Forums and Reddit", and "Telegram". -- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. Regardless, the site can be continued or repurposed by anyone since it is open-source. - -### Follow us: - -- [Adastack Twitter](https://twitter.com/adastackio) -- [Adastack GitHub](https://github.com/adastackio/adastack.io) -- [Dev's Twitter](https://twitter.com/tuckertriggs) +- **Long-term Vision** — I view this project as an experiment where I can contribute to Cardano, observe the growth of the ecosystem, and learn some new development skills. Even after the conclusion of Catalyst I plan to continue being involved with the project and expanding it as time allows. In any case, the site can be continued, forked, or repurposed by anyone since it is open-source. diff --git a/scripts/handleCardClick.js b/scripts/handleCardClick.js deleted file mode 100644 index 96ca2c37..00000000 --- a/scripts/handleCardClick.js +++ /dev/null @@ -1,61 +0,0 @@ -function handleCardClick(event) { - const cardTextContent = event.target.textContent; - const sidebarElements = document.querySelectorAll(".sidebar-menu-item"); - const hamburgerMenu = document.querySelector(".nextra-hamburger"); - const hamburgerInner = document.querySelector(".nextra-hamburger > svg"); - - const mediaSmall = window.matchMedia("(max-width: 767px)"); - const mediaLarge = window.matchMedia("(min-width: 767px)"); - - // Open the hamburger menu when clicking a Card on mobile - const openHamburger = () => { - if (mediaSmall.matches && !hamburgerInner.classList.contains("open")) { - hamburgerMenu.click(); - } - // The below fn fixes a bug that when a user on mobile taps the hamburger menu, it sometimes quickly open and closes on the first tap. This "double clicks" it if it doesn't open properly with the first click. - setTimeout(() => { - if (mediaSmall.matches && !hamburgerInner.classList.contains("open")) { - hamburgerMenu.click(); - } - }, 100); - }; - - // Open relevant sidebar (dropdown on mobile) category menus when clicking Cards. - const openAndCloseSidebarMenus = () => { - sidebarElements.forEach((sidebarElement) => { - if (mediaSmall.matches) { - if ( - // Open sidebar menu that is not open yet && text matches Card's - cardTextContent === sidebarElement.textContent && - !sidebarElement.parentNode.parentNode.classList.contains("open") - ) { - sidebarElement.click(); - } else if ( - // Close sidebar menus that are open && text doesn't match Card's - cardTextContent !== sidebarElement.textContent && - sidebarElement.parentNode.parentNode.classList.contains("open") - ) { - sidebarElement.click(); - } - } - - if (mediaLarge.matches) { - if (cardTextContent === sidebarElement.textContent) { - // Open sidebar menu where the text matches Card's - sidebarElement.click(); - } else if ( - // Close sidebar menus that are open && text doesn't match Card's - cardTextContent !== sidebarElement.textContent && - sidebarElement.parentNode.parentNode.classList.contains("open") - ) { - sidebarElement.click(); - } - } - }); - }; - - openAndCloseSidebarMenus(); - openHamburger(); -} - -export { handleCardClick }; diff --git a/scripts/handleHeaderButtonClick.js b/scripts/handleHeaderButtonClick.js deleted file mode 100644 index bc623383..00000000 --- a/scripts/handleHeaderButtonClick.js +++ /dev/null @@ -1,71 +0,0 @@ -function handleHeaderButtonClick(event) { - const buttonTitleTag = event.target.title; - const sidebarElements = document.querySelectorAll(".sidebar-menu-item"); - const sidebar = document.querySelector(".nextra-sidebar-container"); - const sidebarButtons = document.querySelectorAll( - ".nextra-sidebar-container li button.nx-items-center" - ); - const html = document.documentElement; - const hamburgerMenu = document.querySelector(".nextra-hamburger"); - const hamburgerInner = document.querySelector(".nextra-hamburger > svg"); - - const mediaSmall = window.matchMedia("(max-width: 767px)"); - const mediaLarge = window.matchMedia("(min-width: 767px)"); - - // Open the hamburger menu when clicking a Card on mobile - const openHamburger = () => { - if (mediaSmall.matches && !hamburgerInner.classList.contains("open")) { - hamburgerMenu.click(); - } - // The below fn fixes a bug that when a user on mobile taps the hamburger menu, it sometimes quickly open and closes on the first tap. This "double clicks" it if it doesn't open properly with the first click. - setTimeout(() => { - if (mediaSmall.matches && !hamburgerInner.classList.contains("open")) { - hamburgerMenu.click(); - } - }, 100); - }; - - // Open relevant sidebar (dropdown on mobile) category menus when clicking Button. - const openAndCloseSidebarMenus = () => { - sidebarElements.forEach((sidebarElement) => { - if (mediaSmall.matches) { - if ( - // Open sidebar menu that is not open yet && text matches Button's title tag - buttonTitleTag === sidebarElement.textContent && - !sidebarElement.parentNode.parentNode.classList.contains("open") - ) { - sidebarElement.click(); - } else if ( - // Close sidebar menus that are open && text doesn't match Button's title tag - buttonTitleTag !== sidebarElement.textContent && - sidebarElement.parentNode.parentNode.classList.contains("open") - ) { - sidebarElement.click(); - } - } - - if (mediaLarge.matches) { - if (buttonTitleTag === sidebarElement.textContent) { - // Open sidebar menu where the text matches Button's title tag - sidebarElement.click(); - } else if ( - // Close sidebar menus that are open && text doesn't match Button's title tag - buttonTitleTag !== sidebarElement.textContent && - sidebarElement.parentNode.parentNode.classList.contains("open") - ) { - sidebarElement.click(); - } - if (buttonTitleTag === "Explore All") { - sidebarButtons.forEach((sidebarElement) => { - sidebarElement.click(); - }); - } - } - }); - }; - - openAndCloseSidebarMenus(); - openHamburger(); -} - -export { handleHeaderButtonClick }; diff --git a/scripts/handleHeroButtonClick.js b/scripts/handleHeroButtonClick.js new file mode 100644 index 00000000..309eddc4 --- /dev/null +++ b/scripts/handleHeroButtonClick.js @@ -0,0 +1,42 @@ +function handleHeroButtonClick() { + const sidebarElements = document.querySelectorAll(".sidebar-menu-item"); + // Filter sidebar elements to only the top level ones that can open and close + const topLevelSidebarElements = Array.from(sidebarElements).filter( + (el) => el.parentNode.tagName === "BUTTON" + ); + + // Function to and close sidebar menus when clicking Hero button. + const openAndCloseSidebarMenus = () => { + let openMenuCount = 0; + let menuCount = 0; + + topLevelSidebarElements.forEach((sidebarElement) => { + menuCount++; + if (sidebarElement.parentNode.parentNode.classList.contains("open")) { + openMenuCount++; + } + }); + + // Close all sidebar menus if all sidebar menus are already open + if (openMenuCount === menuCount) { + topLevelSidebarElements.forEach((sidebarElement) => { + if (sidebarElement.parentNode.parentNode.classList.contains("open")) { + sidebarElement.click(); + } + }); + } + + // Open all sidebar menus that aren't open yet + if (openMenuCount <= menuCount) { + topLevelSidebarElements.forEach((sidebarElement) => { + if (!sidebarElement.parentNode.parentNode.classList.contains("open")) { + sidebarElement.click(); + } + }); + } + }; + + openAndCloseSidebarMenus(); +} + +export { handleHeroButtonClick }; diff --git a/scripts/handleHeroButtonClickMobile.js b/scripts/handleHeroButtonClickMobile.js new file mode 100644 index 00000000..0ea1196c --- /dev/null +++ b/scripts/handleHeroButtonClickMobile.js @@ -0,0 +1,31 @@ +function handleHeroButtonClickMobile() { + const hamburgerMenu = document.querySelector(".nextra-hamburger"); + const hamburgerInner = document.querySelector(".nextra-hamburger > svg"); + const sidebarElements = document.querySelectorAll(".sidebar-menu-item"); + // Filter sidebar elements to only the top level ones that can open and close + const topLevelSidebarElements = Array.from(sidebarElements).filter( + (el) => el.parentNode.tagName === "BUTTON" + ); + + // Open the hamburger menu when clicking Hero button + const openHamburger = () => { + if (!hamburgerInner.classList.contains("open")) { + hamburgerMenu.click(); + } + }; + + // Close all menus within on every click of Hero button + const closeHamburgerSubMenus = () => { + topLevelSidebarElements.forEach((sidebarElement) => { + if (sidebarElement.parentNode.parentNode.classList.contains("open")) { + console.log(sidebarElement.textContent); + sidebarElement.click(); + } + }); + }; + + closeHamburgerSubMenus(); + openHamburger(); +} + +export { handleHeroButtonClickMobile }; diff --git a/theme.config.tsx b/theme.config.tsx index 849a870e..9b3ff200 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -62,7 +62,7 @@ const config: DocsThemeConfig = { ? frontMatter.seo_description : standard_seo_description, // Set pages to index only if there is an seo-description on the page. Remove the below line once all pages have content and seo-descriptions. - noindex: true, + noindex: frontMatter.seo_description ? false : true, }; }, search: { placeholder: "Search Cardano" },