├── .gitignore ├── README.md ├── admin ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── api │ ├── .gitkeep │ ├── feature │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── feature.js │ │ ├── models │ │ │ ├── feature.js │ │ │ └── feature.settings.json │ │ └── services │ │ │ └── feature.js │ ├── global │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── global.js │ │ ├── models │ │ │ ├── global.js │ │ │ └── global.settings.json │ │ └── services │ │ │ └── global.js │ ├── homepage │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── homepage.js │ │ ├── models │ │ │ ├── homepage.js │ │ │ └── homepage.settings.json │ │ └── services │ │ │ └── homepage.js │ └── universal │ │ ├── config │ │ └── routes.json │ │ ├── controllers │ │ └── universal.js │ │ ├── models │ │ ├── universal.js │ │ └── universal.settings.json │ │ └── services │ │ └── universal.js ├── components │ ├── global │ │ ├── navigation-panel.json │ │ ├── navigation-push.json │ │ ├── navigation-section.json │ │ └── navigation.json │ ├── shared │ │ ├── button.json │ │ ├── edito.json │ │ └── link.json │ └── slices │ │ ├── hero.json │ │ └── top-features.json ├── config │ ├── database.js │ ├── functions │ │ ├── bootstrap.js │ │ ├── cron.js │ │ └── responses │ │ │ └── 404.js │ └── server.js ├── extensions │ ├── .gitkeep │ └── users-permissions │ │ └── config │ │ └── jwt.js ├── favicon.ico ├── package.json ├── public │ ├── robots.txt │ └── uploads │ │ └── .gitkeep └── yarn.lock └── front ├── .env.example ├── .gitignore ├── .prettierrc ├── .prettierrc.json ├── _error.js ├── jsconfig.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── public └── assets │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-64x64.png │ ├── strapi-logo-dark.svg │ └── strapi-logo-light.svg ├── src ├── components │ ├── @types │ │ ├── fonts.d.ts │ │ ├── graphql.d.ts │ │ ├── media.d.ts │ │ └── product.d.ts │ ├── global │ │ └── Header │ │ │ ├── Desktop │ │ │ ├── NavigationLabel │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Panel │ │ │ │ ├── LinksSection │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Push │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── Mobile │ │ │ ├── Overlay │ │ │ │ ├── NavigationPanel.tsx │ │ │ │ ├── cross.svg │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── burger-icon.svg │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ ├── icons │ │ └── SmallArrow │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ ├── shared │ │ ├── ArrowLink │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── IconTitleText │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Image │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── LabelTitleText │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Link │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Logo │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Page │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── SliceManager │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ ├── slices │ │ ├── Hero │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── TopFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ └── typo │ │ ├── Label │ │ └── index.tsx │ │ ├── RichText │ │ ├── ImageOrLink.tsx │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Text │ │ └── index.tsx │ │ ├── Title │ │ └── index.tsx │ │ ├── TypoComponentWrapper │ │ └── index.tsx │ │ ├── index.ts │ │ ├── themes.module.scss │ │ └── typography.module.scss ├── hooks │ └── useOnMouseEnter │ │ └── index.ts ├── pages │ ├── [slug].js │ ├── _app.tsx │ ├── _document.tsx │ └── index.js ├── styles │ ├── _config.scss │ ├── _reset.scss │ └── globals.scss └── utils │ ├── api.tsx │ └── types.ts ├── tsconfig.json ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/README.md -------------------------------------------------------------------------------- /admin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/.editorconfig -------------------------------------------------------------------------------- /admin/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/.env.example -------------------------------------------------------------------------------- /admin/.eslintignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | **/node_modules/** 4 | -------------------------------------------------------------------------------- /admin/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/.eslintrc -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/.gitignore -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/api/feature/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/feature/config/routes.json -------------------------------------------------------------------------------- /admin/api/feature/controllers/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/feature/controllers/feature.js -------------------------------------------------------------------------------- /admin/api/feature/models/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/feature/models/feature.js -------------------------------------------------------------------------------- /admin/api/feature/models/feature.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/feature/models/feature.settings.json -------------------------------------------------------------------------------- /admin/api/feature/services/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/feature/services/feature.js -------------------------------------------------------------------------------- /admin/api/global/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/global/config/routes.json -------------------------------------------------------------------------------- /admin/api/global/controllers/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/global/controllers/global.js -------------------------------------------------------------------------------- /admin/api/global/models/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/global/models/global.js -------------------------------------------------------------------------------- /admin/api/global/models/global.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/global/models/global.settings.json -------------------------------------------------------------------------------- /admin/api/global/services/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/global/services/global.js -------------------------------------------------------------------------------- /admin/api/homepage/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/homepage/config/routes.json -------------------------------------------------------------------------------- /admin/api/homepage/controllers/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/homepage/controllers/homepage.js -------------------------------------------------------------------------------- /admin/api/homepage/models/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/homepage/models/homepage.js -------------------------------------------------------------------------------- /admin/api/homepage/models/homepage.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/homepage/models/homepage.settings.json -------------------------------------------------------------------------------- /admin/api/homepage/services/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/homepage/services/homepage.js -------------------------------------------------------------------------------- /admin/api/universal/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/universal/config/routes.json -------------------------------------------------------------------------------- /admin/api/universal/controllers/universal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/universal/controllers/universal.js -------------------------------------------------------------------------------- /admin/api/universal/models/universal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/universal/models/universal.js -------------------------------------------------------------------------------- /admin/api/universal/models/universal.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/universal/models/universal.settings.json -------------------------------------------------------------------------------- /admin/api/universal/services/universal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/api/universal/services/universal.js -------------------------------------------------------------------------------- /admin/components/global/navigation-panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/global/navigation-panel.json -------------------------------------------------------------------------------- /admin/components/global/navigation-push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/global/navigation-push.json -------------------------------------------------------------------------------- /admin/components/global/navigation-section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/global/navigation-section.json -------------------------------------------------------------------------------- /admin/components/global/navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/global/navigation.json -------------------------------------------------------------------------------- /admin/components/shared/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/shared/button.json -------------------------------------------------------------------------------- /admin/components/shared/edito.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/shared/edito.json -------------------------------------------------------------------------------- /admin/components/shared/link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/shared/link.json -------------------------------------------------------------------------------- /admin/components/slices/hero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/slices/hero.json -------------------------------------------------------------------------------- /admin/components/slices/top-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/components/slices/top-features.json -------------------------------------------------------------------------------- /admin/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/config/database.js -------------------------------------------------------------------------------- /admin/config/functions/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/config/functions/bootstrap.js -------------------------------------------------------------------------------- /admin/config/functions/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/config/functions/cron.js -------------------------------------------------------------------------------- /admin/config/functions/responses/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/config/functions/responses/404.js -------------------------------------------------------------------------------- /admin/config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/config/server.js -------------------------------------------------------------------------------- /admin/extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/extensions/users-permissions/config/jwt.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | jwtSecret: process.env.JWT_SECRET || '4dafd4eb-9ef1-4aa9-b3b8-9d81f2b0f18e' 3 | }; -------------------------------------------------------------------------------- /admin/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/favicon.ico -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/public/robots.txt -------------------------------------------------------------------------------- /admin/public/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/admin/yarn.lock -------------------------------------------------------------------------------- /front/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_API_URL=http://localhost:1337 2 | -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/.gitignore -------------------------------------------------------------------------------- /front/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/.prettierrc -------------------------------------------------------------------------------- /front/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/.prettierrc.json -------------------------------------------------------------------------------- /front/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/_error.js -------------------------------------------------------------------------------- /front/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/jsconfig.json -------------------------------------------------------------------------------- /front/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/next-env.d.ts -------------------------------------------------------------------------------- /front/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/next.config.js -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/package.json -------------------------------------------------------------------------------- /front/public/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/public/assets/favicon-16x16.png -------------------------------------------------------------------------------- /front/public/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/public/assets/favicon-32x32.png -------------------------------------------------------------------------------- /front/public/assets/favicon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/public/assets/favicon-64x64.png -------------------------------------------------------------------------------- /front/public/assets/strapi-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/public/assets/strapi-logo-dark.svg -------------------------------------------------------------------------------- /front/public/assets/strapi-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/public/assets/strapi-logo-light.svg -------------------------------------------------------------------------------- /front/src/components/@types/fonts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/@types/fonts.d.ts -------------------------------------------------------------------------------- /front/src/components/@types/graphql.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/@types/graphql.d.ts -------------------------------------------------------------------------------- /front/src/components/@types/media.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/@types/media.d.ts -------------------------------------------------------------------------------- /front/src/components/@types/product.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/@types/product.d.ts -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/NavigationLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/NavigationLabel/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/NavigationLabel/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/NavigationLabel/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/Panel/LinksSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/Panel/LinksSection/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/Panel/LinksSection/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/Panel/LinksSection/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/Panel/Push/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/Panel/Push/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/Panel/Push/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/Panel/Push/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/Panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/Panel/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/Panel/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/Panel/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Desktop/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Desktop/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/Overlay/NavigationPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/Overlay/NavigationPanel.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/Overlay/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/Overlay/cross.svg -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/Overlay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/Overlay/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/Overlay/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/Overlay/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/burger-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/burger-icon.svg -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/Mobile/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/Mobile/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/global/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/index.tsx -------------------------------------------------------------------------------- /front/src/components/global/Header/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/global/Header/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/icons/SmallArrow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/icons/SmallArrow/index.tsx -------------------------------------------------------------------------------- /front/src/components/icons/SmallArrow/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/icons/SmallArrow/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/ArrowLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/ArrowLink/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/ArrowLink/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/ArrowLink/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Button/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/Button/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Button/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/IconTitleText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/IconTitleText/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/IconTitleText/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/IconTitleText/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Image/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/Image/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Image/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/LabelTitleText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/LabelTitleText/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/LabelTitleText/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/LabelTitleText/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Link/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/Link/styles.module.scss: -------------------------------------------------------------------------------- 1 | @import 'styles/config.scss'; 2 | 3 | .Link { 4 | } 5 | -------------------------------------------------------------------------------- /front/src/components/shared/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Logo/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/Logo/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Logo/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Page/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/Page/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/Page/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/shared/SliceManager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/SliceManager/index.tsx -------------------------------------------------------------------------------- /front/src/components/shared/SliceManager/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/shared/SliceManager/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/slices/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/slices/Hero/index.tsx -------------------------------------------------------------------------------- /front/src/components/slices/Hero/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/slices/Hero/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/slices/TopFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/slices/TopFeatures/index.tsx -------------------------------------------------------------------------------- /front/src/components/slices/TopFeatures/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/slices/TopFeatures/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/typo/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/Label/index.tsx -------------------------------------------------------------------------------- /front/src/components/typo/RichText/ImageOrLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/RichText/ImageOrLink.tsx -------------------------------------------------------------------------------- /front/src/components/typo/RichText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/RichText/index.tsx -------------------------------------------------------------------------------- /front/src/components/typo/RichText/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/RichText/styles.module.scss -------------------------------------------------------------------------------- /front/src/components/typo/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/Text/index.tsx -------------------------------------------------------------------------------- /front/src/components/typo/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/Title/index.tsx -------------------------------------------------------------------------------- /front/src/components/typo/TypoComponentWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/TypoComponentWrapper/index.tsx -------------------------------------------------------------------------------- /front/src/components/typo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/index.ts -------------------------------------------------------------------------------- /front/src/components/typo/themes.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/themes.module.scss -------------------------------------------------------------------------------- /front/src/components/typo/typography.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/components/typo/typography.module.scss -------------------------------------------------------------------------------- /front/src/hooks/useOnMouseEnter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/hooks/useOnMouseEnter/index.ts -------------------------------------------------------------------------------- /front/src/pages/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/pages/[slug].js -------------------------------------------------------------------------------- /front/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/pages/_app.tsx -------------------------------------------------------------------------------- /front/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/pages/_document.tsx -------------------------------------------------------------------------------- /front/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/pages/index.js -------------------------------------------------------------------------------- /front/src/styles/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/styles/_config.scss -------------------------------------------------------------------------------- /front/src/styles/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/styles/_reset.scss -------------------------------------------------------------------------------- /front/src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/styles/globals.scss -------------------------------------------------------------------------------- /front/src/utils/api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/utils/api.tsx -------------------------------------------------------------------------------- /front/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/src/utils/types.ts -------------------------------------------------------------------------------- /front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/tsconfig.json -------------------------------------------------------------------------------- /front/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/vercel.json -------------------------------------------------------------------------------- /front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marionott/strapi-content-types-builder-101/HEAD/front/yarn.lock --------------------------------------------------------------------------------