{"id":41812346,"url":"https://github.com/devfolioco/supabald-jesse","last_synced_at":"2026-01-25T07:05:55.141Z","repository":{"id":242841446,"uuid":"805682206","full_name":"devfolioco/supabald-jesse","owner":"devfolioco","description":"The website and frame for the \"Let's get Jesse Bald\" campaign as part of the Onchain Summer Buildathon","archived":false,"fork":false,"pushed_at":"2024-07-19T07:18:21.000Z","size":19037,"stargazers_count":13,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-07-19T22:13:01.489Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://letsgetjessebald.com/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devfolioco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-25T06:56:47.000Z","updated_at":"2024-07-19T07:16:11.000Z","dependencies_parsed_at":"2024-07-17T17:51:29.252Z","dependency_job_id":null,"html_url":"https://github.com/devfolioco/supabald-jesse","commit_stats":null,"previous_names":["devfolioco/supabald-jesse"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/devfolioco/supabald-jesse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devfolioco%2Fsupabald-jesse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devfolioco%2Fsupabald-jesse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devfolioco%2Fsupabald-jesse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devfolioco%2Fsupabald-jesse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devfolioco","download_url":"https://codeload.github.com/devfolioco/supabald-jesse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devfolioco%2Fsupabald-jesse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28747308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T05:12:38.112Z","status":"ssl_error","status_checked_at":"2026-01-25T05:04:50.338Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-25T07:05:54.440Z","updated_at":"2026-01-25T07:05:55.135Z","avatar_url":"https://github.com/devfolioco.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SupaBald Jesse\n\n![Preview GIF](https://letsgetjessebald.com/nft-fc.gif)\n\nThis repository contains the website and frame for the \"Let's get Jesse Bald\" campaign by [Devfolio](https://devfolio.co/) for the [Onchain Summer Buildathon](https://onchain-summer.devfolio.co/)\n\n[![Deployment](https://img.shields.io/website?url=https%3A%2F%2Fletsgetjessebald.com%2F\u0026up_message=https%3A%2F%2Fletsgetjessebald.com%2F\u0026logo=curl\u0026label=Deployment)](https://letsgetjessebald.com/)\n\n[![Build Status](https://img.shields.io/github/deployments/devfolioco/supabald-jesse/production?logo=github\u0026label=Build%20Status)](https://github.com/devfolioco/supabald-jesse/deployments/Production)\n\n# Getting Started\n\n### Prerequisites\n\n- Node 18 +\n- Yarn\n\n### Environment Variables\n\n- Create .env.local from .env.example\n- Get Neynar API Keys from https://docs.neynar.com\n\n### Installation\n\n```bash\n# Using yarn (Recommended)\nyarn\nyarn dev\n```\n\n# Tech Stack\n\n- NextJS with the App Router - https://nextjs.org/\n- Frog.JS for Farcaster Frames - https://frog.fm/\n- TailwindCSS - tailwindcss.com/\n- Framer Motion - https://framer.com/motion/\n- Prettier / ESlint - https://prettier.io/  https://eslint.org/\n\n# Project Structure\n\n```bash\n├── .next/\n├── node_modules/\n├── public/\n├── src/\n│   ├── app/\n│   │   ├── api/ # Endpoints for the farcaster frames\n│   │   ├── components/ # all resuable small components\n│   │   ├── fonts/\n│   │   ├── frog/ # contains frog ui for farcaster frames\n│   │   ├── hooks/ # common components logic as hooks\n│   │   ├── sections/ # Landing page sections\n│   │   ├── styles/ # all css\n│   │   ├── utils/ # common helper methods\n│   │   ├── globals.css\n│   │   ├── layout.tsx # html layout\n│   │   ├── page.tsx # main page\n├── .env.local # local env\n├── .eslintrc.json\n├── .gitignore\n├── .prettierrc.js\n├── next-env.d.ts\n├── next.config.mjs\n├── package.json\n├── postcss.config.mjs\n├── README.md\n├── tailwind.config.ts\n├── tsconfig.json\n├── yarn.lock\n\n```\n\n# Contributing\n\nFeel free to open [issues](https://github.com/devfolioco/supabald-jesse/issues/new/choose) and [pull requests](https://github.com/devfolioco/supabald-jesse/pulls)!\n\n## Contributors\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n\n## License\n\n[![License](https://img.shields.io/github/license/devfolioco/supabald-jesse#reload)](https://github.com/devfolioco/supabald-jesse/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevfolioco%2Fsupabald-jesse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevfolioco%2Fsupabald-jesse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevfolioco%2Fsupabald-jesse/lists"}