├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── HomePageSections.tsx └── common │ ├── CarouselBlock.tsx │ ├── HeaderBlock.tsx │ └── TwoColumnBlock.tsx ├── graphql.config.yml ├── graphql ├── cms │ ├── homepage.generated.tsx │ └── homepage.graphql └── types.tsx ├── lib └── apollo │ ├── ApolloProvider.tsx │ └── cms-client.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── public ├── arrow.svg └── vercel.svg ├── styles └── style.css ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/README.md -------------------------------------------------------------------------------- /components/HomePageSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/components/HomePageSections.tsx -------------------------------------------------------------------------------- /components/common/CarouselBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/components/common/CarouselBlock.tsx -------------------------------------------------------------------------------- /components/common/HeaderBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/components/common/HeaderBlock.tsx -------------------------------------------------------------------------------- /components/common/TwoColumnBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/components/common/TwoColumnBlock.tsx -------------------------------------------------------------------------------- /graphql.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/graphql.config.yml -------------------------------------------------------------------------------- /graphql/cms/homepage.generated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/graphql/cms/homepage.generated.tsx -------------------------------------------------------------------------------- /graphql/cms/homepage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/graphql/cms/homepage.graphql -------------------------------------------------------------------------------- /graphql/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/graphql/types.tsx -------------------------------------------------------------------------------- /lib/apollo/ApolloProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/lib/apollo/ApolloProvider.tsx -------------------------------------------------------------------------------- /lib/apollo/cms-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/lib/apollo/cms-client.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/public/arrow.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/styles/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3solution/jomi-challenge-frontend_React/HEAD/yarn.lock --------------------------------------------------------------------------------