├── .cz.toml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── dependabot.yml ├── linters │ ├── .eslintrc.json │ ├── .gitleaks.toml │ ├── .markdownlint.yml │ ├── .stylelintrc.json │ └── .yamllint.yml ├── pull_request_template.md ├── settings.yml └── workflows │ ├── build.yml │ ├── conventional_commits.yml │ ├── dependency.yml │ ├── lint.yml │ ├── nextjs.yml │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── components.json ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── fonts │ ├── CiscoSansTTBold.ttf │ ├── CiscoSansTTExtraLight.ttf │ ├── CiscoSansTTHeavy.ttf │ ├── CiscoSansTTLight.ttf │ ├── CiscoSansTTLightOblique.ttf │ ├── CiscoSansTTMedium.ttf │ └── CiscoSansTTRegular.ttf ├── images │ ├── AG2-logo.png │ ├── Advensis.png │ ├── ArcBlock.svg │ ├── Boomi_2.png │ ├── BrowserBase.png │ ├── CrewAI-logo.png │ ├── Dynamiq_Logo.png │ ├── Galileo.png │ ├── Glean.svg │ ├── Langchain_updated.png │ ├── LayerLogo.png │ ├── Letta.svg │ ├── Lobby.png │ ├── PatternAgenticAI.png │ ├── SciEncephalonAI.png │ ├── SmythOS.png │ ├── Tykio.png │ ├── Type_B_white.png │ ├── agency_white.png │ ├── agentoverlay.png │ ├── aisera.png │ ├── anon-logo.png │ ├── anyweb.png │ ├── arizeAI.png │ ├── arrow-right.png │ ├── assets.png │ ├── aviz.png │ ├── beam.png │ ├── ciroos.png │ ├── cisco-logo.png │ ├── comet.png │ ├── dagger.png │ ├── duo.svg │ ├── ema.png │ ├── fabrix-ai.png │ ├── haize-labs-white.png │ ├── hero_border.png │ ├── homepage │ │ ├── agntcy-logo-white.png │ │ └── hero-diagram.png │ ├── human-security.png │ ├── hyperbolic.png │ ├── image-1.png │ ├── image-2.png │ ├── image-3.png │ ├── infinitus.svg │ ├── infosys.png │ ├── kibo.svg │ ├── komodor_logo.png │ ├── lightningAI.png │ ├── llamacloud-light.svg │ ├── llamaindex.png │ ├── lleverage.png │ ├── logo.png │ ├── logo_big.png │ ├── logo_orange.png │ ├── mem0.png │ ├── mongodb-logo.png │ ├── motleycrew.png │ ├── mozilla.png │ ├── naptha-ai.png │ ├── nec.png │ ├── netcloud.svg │ ├── nurix-ai.svg │ ├── onetrust.png │ ├── opaque.png │ ├── orium.png │ ├── ory.png │ ├── outshift_logo.png │ ├── pensar.png │ ├── permit_logo_variant3.png │ ├── persistent.png │ ├── plotch.png │ ├── pydantic.png │ ├── redis.png │ ├── skreens.svg │ ├── skyfire.png │ ├── snaplogic.png │ ├── softserve.svg │ ├── superbo.png │ ├── supertab.png │ ├── supporters │ │ └── lf-horizontal-white.png │ ├── swirl-ai.png │ ├── traceloop.png │ ├── ushur.svg │ ├── valtech.png │ ├── vijil.png │ ├── voagents.png │ ├── voltagent.png │ ├── wayfound.png │ ├── weaviate_WH.png │ ├── yallma3.png │ ├── yokai.png │ └── zep.png ├── logo │ ├── crea-884-agntcy-announcement-blog-1x.webp │ ├── formative-members │ │ ├── cisco-logo.png │ │ ├── dell-logo.png │ │ ├── google-logo.png │ │ ├── oracle-logo.png │ │ └── red-hat-logo.png │ └── preview-thumbnail-new.png └── videos │ └── AGTNCY-Architecture-R1.mp4 ├── src ├── app │ ├── changelog │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── page.tsx │ ├── resources │ │ └── page.tsx │ ├── robots.txt │ ├── sitemap.ts │ └── supporters │ │ └── page.tsx ├── components │ ├── changelog │ │ ├── changelog-card.tsx │ │ ├── changelog-client.tsx │ │ └── changelog-content.tsx │ ├── homepage │ │ ├── downloadable.tsx │ │ ├── hero.tsx │ │ ├── quotes-client.tsx │ │ └── quotes.tsx │ ├── icons.tsx │ ├── layout │ │ ├── banner │ │ │ └── index.tsx │ │ ├── footer.tsx │ │ └── nav-bar.tsx │ ├── resources │ │ ├── resources-card.tsx │ │ └── resources-content.tsx │ ├── reusables │ │ ├── glowing-button.tsx │ │ ├── logo-marquee.tsx │ │ ├── quote-card.tsx │ │ ├── quote-img.tsx │ │ ├── quote-title.tsx │ │ ├── render-logo.tsx │ │ └── table.tsx │ ├── supporters │ │ ├── contributors.tsx │ │ ├── description.tsx │ │ ├── join_us.tsx │ │ ├── role_description.tsx │ │ └── steering_committee.tsx │ └── ui │ │ ├── aspect-ratio.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── drawer.tsx │ │ └── marquee.tsx ├── data │ ├── changelog-data.tsx │ ├── homepage-data.tsx │ ├── members.tsx │ └── resource-data.tsx ├── lib │ └── utils.ts ├── styles │ └── form.css └── types │ └── index.d.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.cz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.cz.toml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/linters/.eslintrc.json -------------------------------------------------------------------------------- /.github/linters/.gitleaks.toml: -------------------------------------------------------------------------------- 1 | [extend] 2 | useDefault = true 3 | disabledRules = [ "generic-api-key"] -------------------------------------------------------------------------------- /.github/linters/.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/linters/.markdownlint.yml -------------------------------------------------------------------------------- /.github/linters/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/linters/.stylelintrc.json -------------------------------------------------------------------------------- /.github/linters/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/linters/.yamllint.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/conventional_commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/workflows/conventional_commits.yml -------------------------------------------------------------------------------- /.github/workflows/dependency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/workflows/dependency.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/nextjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/workflows/nextjs.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # Maintainers 2 | 3 | - [Sri](https://github.com/sriaradhyula) 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/SECURITY.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTBold.ttf -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTExtraLight.ttf -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTHeavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTHeavy.ttf -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTLight.ttf -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTLightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTLightOblique.ttf -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTMedium.ttf -------------------------------------------------------------------------------- /public/fonts/CiscoSansTTRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/fonts/CiscoSansTTRegular.ttf -------------------------------------------------------------------------------- /public/images/AG2-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/AG2-logo.png -------------------------------------------------------------------------------- /public/images/Advensis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Advensis.png -------------------------------------------------------------------------------- /public/images/ArcBlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/ArcBlock.svg -------------------------------------------------------------------------------- /public/images/Boomi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Boomi_2.png -------------------------------------------------------------------------------- /public/images/BrowserBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/BrowserBase.png -------------------------------------------------------------------------------- /public/images/CrewAI-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/CrewAI-logo.png -------------------------------------------------------------------------------- /public/images/Dynamiq_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Dynamiq_Logo.png -------------------------------------------------------------------------------- /public/images/Galileo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Galileo.png -------------------------------------------------------------------------------- /public/images/Glean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Glean.svg -------------------------------------------------------------------------------- /public/images/Langchain_updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Langchain_updated.png -------------------------------------------------------------------------------- /public/images/LayerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/LayerLogo.png -------------------------------------------------------------------------------- /public/images/Letta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Letta.svg -------------------------------------------------------------------------------- /public/images/Lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Lobby.png -------------------------------------------------------------------------------- /public/images/PatternAgenticAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/PatternAgenticAI.png -------------------------------------------------------------------------------- /public/images/SciEncephalonAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/SciEncephalonAI.png -------------------------------------------------------------------------------- /public/images/SmythOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/SmythOS.png -------------------------------------------------------------------------------- /public/images/Tykio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Tykio.png -------------------------------------------------------------------------------- /public/images/Type_B_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/Type_B_white.png -------------------------------------------------------------------------------- /public/images/agency_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/agency_white.png -------------------------------------------------------------------------------- /public/images/agentoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/agentoverlay.png -------------------------------------------------------------------------------- /public/images/aisera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/aisera.png -------------------------------------------------------------------------------- /public/images/anon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/anon-logo.png -------------------------------------------------------------------------------- /public/images/anyweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/anyweb.png -------------------------------------------------------------------------------- /public/images/arizeAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/arizeAI.png -------------------------------------------------------------------------------- /public/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/arrow-right.png -------------------------------------------------------------------------------- /public/images/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/assets.png -------------------------------------------------------------------------------- /public/images/aviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/aviz.png -------------------------------------------------------------------------------- /public/images/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/beam.png -------------------------------------------------------------------------------- /public/images/ciroos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/ciroos.png -------------------------------------------------------------------------------- /public/images/cisco-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/cisco-logo.png -------------------------------------------------------------------------------- /public/images/comet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/comet.png -------------------------------------------------------------------------------- /public/images/dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/dagger.png -------------------------------------------------------------------------------- /public/images/duo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/duo.svg -------------------------------------------------------------------------------- /public/images/ema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/ema.png -------------------------------------------------------------------------------- /public/images/fabrix-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/fabrix-ai.png -------------------------------------------------------------------------------- /public/images/haize-labs-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/haize-labs-white.png -------------------------------------------------------------------------------- /public/images/hero_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/hero_border.png -------------------------------------------------------------------------------- /public/images/homepage/agntcy-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/homepage/agntcy-logo-white.png -------------------------------------------------------------------------------- /public/images/homepage/hero-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/homepage/hero-diagram.png -------------------------------------------------------------------------------- /public/images/human-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/human-security.png -------------------------------------------------------------------------------- /public/images/hyperbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/hyperbolic.png -------------------------------------------------------------------------------- /public/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/image-1.png -------------------------------------------------------------------------------- /public/images/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/image-2.png -------------------------------------------------------------------------------- /public/images/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/image-3.png -------------------------------------------------------------------------------- /public/images/infinitus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/infinitus.svg -------------------------------------------------------------------------------- /public/images/infosys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/infosys.png -------------------------------------------------------------------------------- /public/images/kibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/kibo.svg -------------------------------------------------------------------------------- /public/images/komodor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/komodor_logo.png -------------------------------------------------------------------------------- /public/images/lightningAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/lightningAI.png -------------------------------------------------------------------------------- /public/images/llamacloud-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/llamacloud-light.svg -------------------------------------------------------------------------------- /public/images/llamaindex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/llamaindex.png -------------------------------------------------------------------------------- /public/images/lleverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/lleverage.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/logo_big.png -------------------------------------------------------------------------------- /public/images/logo_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/logo_orange.png -------------------------------------------------------------------------------- /public/images/mem0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/mem0.png -------------------------------------------------------------------------------- /public/images/mongodb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/mongodb-logo.png -------------------------------------------------------------------------------- /public/images/motleycrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/motleycrew.png -------------------------------------------------------------------------------- /public/images/mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/mozilla.png -------------------------------------------------------------------------------- /public/images/naptha-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/naptha-ai.png -------------------------------------------------------------------------------- /public/images/nec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/nec.png -------------------------------------------------------------------------------- /public/images/netcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/netcloud.svg -------------------------------------------------------------------------------- /public/images/nurix-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/nurix-ai.svg -------------------------------------------------------------------------------- /public/images/onetrust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/onetrust.png -------------------------------------------------------------------------------- /public/images/opaque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/opaque.png -------------------------------------------------------------------------------- /public/images/orium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/orium.png -------------------------------------------------------------------------------- /public/images/ory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/ory.png -------------------------------------------------------------------------------- /public/images/outshift_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/outshift_logo.png -------------------------------------------------------------------------------- /public/images/pensar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/pensar.png -------------------------------------------------------------------------------- /public/images/permit_logo_variant3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/permit_logo_variant3.png -------------------------------------------------------------------------------- /public/images/persistent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/persistent.png -------------------------------------------------------------------------------- /public/images/plotch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/plotch.png -------------------------------------------------------------------------------- /public/images/pydantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/pydantic.png -------------------------------------------------------------------------------- /public/images/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/redis.png -------------------------------------------------------------------------------- /public/images/skreens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/skreens.svg -------------------------------------------------------------------------------- /public/images/skyfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/skyfire.png -------------------------------------------------------------------------------- /public/images/snaplogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/snaplogic.png -------------------------------------------------------------------------------- /public/images/softserve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/softserve.svg -------------------------------------------------------------------------------- /public/images/superbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/superbo.png -------------------------------------------------------------------------------- /public/images/supertab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/supertab.png -------------------------------------------------------------------------------- /public/images/supporters/lf-horizontal-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/supporters/lf-horizontal-white.png -------------------------------------------------------------------------------- /public/images/swirl-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/swirl-ai.png -------------------------------------------------------------------------------- /public/images/traceloop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/traceloop.png -------------------------------------------------------------------------------- /public/images/ushur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/ushur.svg -------------------------------------------------------------------------------- /public/images/valtech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/valtech.png -------------------------------------------------------------------------------- /public/images/vijil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/vijil.png -------------------------------------------------------------------------------- /public/images/voagents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/voagents.png -------------------------------------------------------------------------------- /public/images/voltagent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/voltagent.png -------------------------------------------------------------------------------- /public/images/wayfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/wayfound.png -------------------------------------------------------------------------------- /public/images/weaviate_WH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/weaviate_WH.png -------------------------------------------------------------------------------- /public/images/yallma3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/yallma3.png -------------------------------------------------------------------------------- /public/images/yokai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/yokai.png -------------------------------------------------------------------------------- /public/images/zep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/images/zep.png -------------------------------------------------------------------------------- /public/logo/crea-884-agntcy-announcement-blog-1x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/crea-884-agntcy-announcement-blog-1x.webp -------------------------------------------------------------------------------- /public/logo/formative-members/cisco-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/formative-members/cisco-logo.png -------------------------------------------------------------------------------- /public/logo/formative-members/dell-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/formative-members/dell-logo.png -------------------------------------------------------------------------------- /public/logo/formative-members/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/formative-members/google-logo.png -------------------------------------------------------------------------------- /public/logo/formative-members/oracle-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/formative-members/oracle-logo.png -------------------------------------------------------------------------------- /public/logo/formative-members/red-hat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/formative-members/red-hat-logo.png -------------------------------------------------------------------------------- /public/logo/preview-thumbnail-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/logo/preview-thumbnail-new.png -------------------------------------------------------------------------------- /public/videos/AGTNCY-Architecture-R1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/public/videos/AGTNCY-Architecture-R1.mp4 -------------------------------------------------------------------------------- /src/app/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/changelog/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/resources/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/resources/page.tsx -------------------------------------------------------------------------------- /src/app/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/robots.txt -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/app/supporters/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/app/supporters/page.tsx -------------------------------------------------------------------------------- /src/components/changelog/changelog-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/changelog/changelog-card.tsx -------------------------------------------------------------------------------- /src/components/changelog/changelog-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/changelog/changelog-client.tsx -------------------------------------------------------------------------------- /src/components/changelog/changelog-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/changelog/changelog-content.tsx -------------------------------------------------------------------------------- /src/components/homepage/downloadable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/homepage/downloadable.tsx -------------------------------------------------------------------------------- /src/components/homepage/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/homepage/hero.tsx -------------------------------------------------------------------------------- /src/components/homepage/quotes-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/homepage/quotes-client.tsx -------------------------------------------------------------------------------- /src/components/homepage/quotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/homepage/quotes.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/layout/banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/layout/banner/index.tsx -------------------------------------------------------------------------------- /src/components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/layout/footer.tsx -------------------------------------------------------------------------------- /src/components/layout/nav-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/layout/nav-bar.tsx -------------------------------------------------------------------------------- /src/components/resources/resources-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/resources/resources-card.tsx -------------------------------------------------------------------------------- /src/components/resources/resources-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/resources/resources-content.tsx -------------------------------------------------------------------------------- /src/components/reusables/glowing-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/glowing-button.tsx -------------------------------------------------------------------------------- /src/components/reusables/logo-marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/logo-marquee.tsx -------------------------------------------------------------------------------- /src/components/reusables/quote-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/quote-card.tsx -------------------------------------------------------------------------------- /src/components/reusables/quote-img.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/quote-img.tsx -------------------------------------------------------------------------------- /src/components/reusables/quote-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/quote-title.tsx -------------------------------------------------------------------------------- /src/components/reusables/render-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/render-logo.tsx -------------------------------------------------------------------------------- /src/components/reusables/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/reusables/table.tsx -------------------------------------------------------------------------------- /src/components/supporters/contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/supporters/contributors.tsx -------------------------------------------------------------------------------- /src/components/supporters/description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/supporters/description.tsx -------------------------------------------------------------------------------- /src/components/supporters/join_us.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/supporters/join_us.tsx -------------------------------------------------------------------------------- /src/components/supporters/role_description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/supporters/role_description.tsx -------------------------------------------------------------------------------- /src/components/supporters/steering_committee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/supporters/steering_committee.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/components/ui/marquee.tsx -------------------------------------------------------------------------------- /src/data/changelog-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/data/changelog-data.tsx -------------------------------------------------------------------------------- /src/data/homepage-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/data/homepage-data.tsx -------------------------------------------------------------------------------- /src/data/members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/data/members.tsx -------------------------------------------------------------------------------- /src/data/resource-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/data/resource-data.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/styles/form.css -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agntcy/agntcy-website/HEAD/yarn.lock --------------------------------------------------------------------------------