├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── .vscode └── settings.json ├── LICENSE-posts.md ├── LICENSE-website.md ├── README.md ├── app ├── [page] │ └── page.tsx ├── analytics.tsx ├── fonts │ └── inter │ │ ├── Inter-Display.woff2 │ │ ├── Inter-DisplayBlack.woff2 │ │ ├── Inter-DisplayBlackItalic.woff2 │ │ ├── Inter-DisplayBold.woff2 │ │ ├── Inter-DisplayBoldItalic.woff2 │ │ ├── Inter-DisplayExtraBold.woff2 │ │ ├── Inter-DisplayExtraBoldItalic.woff2 │ │ ├── Inter-DisplayExtraLight.woff2 │ │ ├── Inter-DisplayExtraLightItalic.woff2 │ │ ├── Inter-DisplayItalic.woff2 │ │ ├── Inter-DisplayLight.woff2 │ │ ├── Inter-DisplayLightItalic.woff2 │ │ ├── Inter-DisplayMedium.woff2 │ │ ├── Inter-DisplayMediumItalic.woff2 │ │ ├── Inter-DisplaySemiBold.woff2 │ │ ├── Inter-DisplaySemiBoldItalic.woff2 │ │ ├── Inter-DisplayThin.woff2 │ │ └── Inter-DisplayThinItalic.woff2 ├── globals.css ├── layout.tsx ├── page.tsx └── tag │ ├── [tag] │ ├── [page] │ │ └── page.tsx │ └── page.tsx │ └── layout.tsx ├── components ├── container.tsx ├── feyz.tsx ├── footer.tsx ├── header.tsx ├── nav.tsx ├── page.tsx └── pagination.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public └── manifest.json ├── tailwind.config.js ├── tsconfig.json ├── types └── airtable.ts ├── utils ├── airtable.ts ├── const.ts ├── cx.ts └── helper.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE-posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/LICENSE-posts.md -------------------------------------------------------------------------------- /LICENSE-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/LICENSE-website.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/README.md -------------------------------------------------------------------------------- /app/[page]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/[page]/page.tsx -------------------------------------------------------------------------------- /app/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/analytics.tsx -------------------------------------------------------------------------------- /app/fonts/inter/Inter-Display.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-Display.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayBlack.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayBlack.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayBlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayBlackItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayBold.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayBoldItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayExtraBold.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayExtraLight.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayExtraLightItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayLight.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayLightItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayMedium.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayMediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayMediumItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplaySemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplaySemiBold.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplaySemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplaySemiBoldItalic.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayThin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayThin.woff2 -------------------------------------------------------------------------------- /app/fonts/inter/Inter-DisplayThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/fonts/inter/Inter-DisplayThinItalic.woff2 -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/tag/[tag]/[page]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/tag/[tag]/[page]/page.tsx -------------------------------------------------------------------------------- /app/tag/[tag]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/tag/[tag]/page.tsx -------------------------------------------------------------------------------- /app/tag/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/app/tag/layout.tsx -------------------------------------------------------------------------------- /components/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/container.tsx -------------------------------------------------------------------------------- /components/feyz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/feyz.tsx -------------------------------------------------------------------------------- /components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/footer.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/nav.tsx -------------------------------------------------------------------------------- /components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/page.tsx -------------------------------------------------------------------------------- /components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/components/pagination.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/public/manifest.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/airtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/types/airtable.ts -------------------------------------------------------------------------------- /utils/airtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/utils/airtable.ts -------------------------------------------------------------------------------- /utils/const.ts: -------------------------------------------------------------------------------- 1 | export const DATA_PER_PAGE = 10 2 | -------------------------------------------------------------------------------- /utils/cx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/utils/cx.ts -------------------------------------------------------------------------------- /utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/utils/helper.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/feyz/HEAD/yarn.lock --------------------------------------------------------------------------------