├── .eslintrc.json ├── .github └── workflows │ ├── build.yml │ └── prettier.yml ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── components ├── Content.tsx ├── Donate.tsx ├── FAQ.tsx ├── Footer.tsx ├── Header.tsx ├── Hero.tsx └── Spinner.tsx ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── donate.tsx ├── index.tsx └── privacy.tsx ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── googledfe269244d136c58.html ├── hero.png ├── ldjson-logo.jpg └── site.webmanifest ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/.github/workflows/prettier.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/README.md -------------------------------------------------------------------------------- /components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/Content.tsx -------------------------------------------------------------------------------- /components/Donate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/Donate.tsx -------------------------------------------------------------------------------- /components/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/FAQ.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/Hero.tsx -------------------------------------------------------------------------------- /components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/components/Spinner.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/donate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/pages/donate.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/pages/privacy.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/googledfe269244d136c58.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/googledfe269244d136c58.html -------------------------------------------------------------------------------- /public/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/hero.png -------------------------------------------------------------------------------- /public/ldjson-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/ldjson-logo.jpg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabipurcaru/followgraph/HEAD/tsconfig.json --------------------------------------------------------------------------------