Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
36b73c6
getting started
Sep 4, 2025
5db7435
Remove redundant sections and update Bankr link
Sep 5, 2025
10be64a
Reorganize agents page with new categories and content
Sep 10, 2025
fe7896d
Change agents page URL to /buildinchat and update meta tags
Sep 10, 2025
8fcd133
Add custom preview image for social media sharing
Sep 10, 2025
06e52cf
Add image dimensions to meta tags for better preview compatibility
Sep 10, 2025
f88e5de
Add Agent SDK section and improve page layout
Sep 11, 2025
c282381
Content and layout update
darickdang Sep 11, 2025
fcb0230
Asset update and layout fixes
darickdang Sep 11, 2025
19170e3
Fix Agent SDK button link and update social media links
Sep 11, 2025
78bbf86
Responsive updates
darickdang Sep 11, 2025
9b700ec
Merge branch 'em/agents' of https://github.com/xmtp/xmtp-dot-org into…
darickdang Sep 11, 2025
8550194
Padding hotfix
darickdang Sep 11, 2025
5094b19
padding hot fix
darickdang Sep 11, 2025
9e42e68
small layout fix
darickdang Sep 12, 2025
e13a5dd
Copy updates
darickdang Sep 12, 2025
b161ff7
Merge branch 'main' into em/agents
darickdang Sep 12, 2025
00dda41
Dark mode fix
darickdang Sep 15, 2025
bd92320
Update buildinchat page messaging and ecosystem showcase
Sep 19, 2025
0a3ab38
Update Agents page copy and terminology
Sep 23, 2025
43b8e44
Merge branch 'em/agents' of https://github.com/xmtp/xmtp-dot-org into…
darickdang Sep 23, 2025
b85ad89
Updated graphic
darickdang Sep 23, 2025
5c664c6
Updated bottom graphic
darickdang Sep 23, 2025
188ade3
Update Agents page with refined copy and messaging
Sep 23, 2025
782d775
small width update
darickdang Sep 23, 2025
723e30a
Refine Agents page copy and structure
Sep 23, 2025
1ecb6d9
Update page URL from /buildinchat to /miniapps and add custom preview…
Sep 23, 2025
47965a4
Update preview link meta tags for mini-apps page
Sep 23, 2025
d0b9f00
Update messaging to emphasize scale and simplify copy
Sep 23, 2025
531bdee
Add descriptive text and update page messaging
Sep 23, 2025
fcf1a5c
Layout update
darickdang Sep 23, 2025
5be1842
Update messaging from "Create" to "Add" mini app experiences
Sep 23, 2025
d65dead
Simplify messaging by removing description paragraph
Sep 23, 2025
aa84d83
Updated hero video
darickdang Sep 23, 2025
59f8feb
Updated layout and structure
darickdang Sep 23, 2025
99fb36b
Updated graphic and added metric animations
darickdang Sep 24, 2025
c676cb3
new logos
darickdang Sep 24, 2025
9ff0329
Updated ecosystem graphic
darickdang Sep 24, 2025
b97fbd5
Updated metrics
darickdang Sep 24, 2025
c64c756
added new copy and link
darickdang Sep 24, 2025
6988dc2
Updated copy, added links
darickdang Sep 24, 2025
4e48570
Spacing update
darickdang Sep 24, 2025
83a767f
Resolve merge conflicts with main branch
darickdang Sep 24, 2025
48f2db4
Conflict updates
darickdang Sep 24, 2025
88c965e
deploy fixes
darickdang Sep 24, 2025
44f8579
vercel fix
darickdang Sep 24, 2025
dea4892
deploy fix
darickdang Sep 24, 2025
26449a0
deploy fix
darickdang Sep 25, 2025
b3db125
docsearch fix
darickdang Sep 25, 2025
47f62ba
docsearch new fix
darickdang Sep 25, 2025
7b282aa
docker fix
darickdang Sep 25, 2025
74f0e06
Hero fix
darickdang Sep 25, 2025
49779c1
label hot fix
darickdang Sep 25, 2025
4413dc0
jha copyedits
jhaaaa Sep 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
node_modules
npm-debug.log
.git
.gitignore
README.md
.env
.nyc_output
coverage
.nyc_output
.coverage
.coverage/
build
dist
.DS_Store
*.log
73 changes: 38 additions & 35 deletions .github/workflows/docsearch.yaml
Original file line number Diff line number Diff line change
@@ -1,37 +1,40 @@
# This is a basic workflow to help you get started with Actions

name: DocSearch Scraper

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

- uses: actions/checkout@v2

- name: Get the content of algolia.config.json as config
id: algolia_config
run: echo "::set-output name=config::$(cat algolia.config.json | jq -r tostring)"

- name: Push indices to Algolia
uses: signcl/docsearch-scraper-action@master
env:
APPLICATION_ID: ${{ secrets.ALGOLIA_APP_ID }}
API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
CONFIG: ${{ steps.algolia_config.outputs.config }}
name: DocSearch Scraper (Disabled)

# Controls when the workflow will run
on:
# Temporarily disabled - only runs manually
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Temporarily disabled due to Docker build issues
# This workflow can be re-enabled by uncommenting the push/pull_request triggers above

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

- uses: actions/checkout@v4

- name: Get the content of algolia.config.json as config
id: algolia_config
run: echo "config=$(cat algolia.config.json | jq -r tostring)" >> $GITHUB_OUTPUT

- name: Push indices to Algolia
uses: XaF/docsearch-scraper@v0
with:
application_id: ${{ secrets.ALGOLIA_APP_ID }}
write_api_key: ${{ secrets.ALGOLIA_API_KEY }}
config: ${{ steps.algolia_config.outputs.config }}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
"version": "0.0.0",
"private": true,
"engines": {
"node": "22.x"
"node": ">=18.0.0"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"build": "NODE_OPTIONS='--max-old-space-size=4096' docusaurus build",
"build:production": "NODE_OPTIONS='--max-old-space-size=4096' docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
Expand All @@ -35,6 +36,7 @@
"buffer": "^6.0.3",
"clsx": "^1.1.1",
"docusaurus-plugin-plausible": "^0.0.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"framer-motion": "^6.5.1",
"prism-react-renderer": "^1.2.1",
Expand All @@ -59,7 +61,6 @@
]
},
"devDependencies": {
"dotenv": "^16.0.1",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.23"
}
Expand Down
Loading