├── .gitignore ├── README.md ├── article-preview-component ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── desktop-active-state.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ ├── mobile-active-state.jpg │ └── mobile-design.jpg ├── images │ ├── avatar-michelle.jpg │ ├── drawers.jpg │ ├── favicon-32x32.png │ ├── icon-facebook.svg │ ├── icon-pinterest.svg │ ├── icon-share-white.svg │ ├── icon-share.svg │ └── icon-twitter.svg ├── index.html ├── scripts │ └── script.js └── style-guide.md ├── base-apparel-coming-soon ├── .gitignore ├── README.md ├── design │ ├── active-states.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-pattern-desktop.svg │ ├── favicon-32x32.png │ ├── hero-desktop.jpg │ ├── hero-mobile.jpg │ ├── icon-arrow.svg │ ├── icon-error.svg │ └── logo.svg ├── index.html ├── script.js ├── style-guide.md └── style.css ├── coding-bootcamp-testimonials-slider ├── .gitignore ├── README.md ├── design │ ├── desktop-design-slide-1.jpg │ ├── desktop-design-slide-2.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ ├── mobile-design-slide-1.jpg │ └── mobile-design-slide-2.jpg ├── images │ ├── bg-pattern-desktop.svg │ ├── favicon-32x32.png │ ├── icon-next.svg │ ├── icon-prev.svg │ ├── image-john.jpg │ ├── image-tanya.jpg │ ├── pattern-bg.svg │ ├── pattern-curve.svg │ └── pattern-quotes.svg ├── index.html ├── script.js ├── style-guide.md └── style.css ├── faq-accordion-card ├── .gitignore ├── README.md ├── compiled.css ├── design │ ├── active-states.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-pattern-desktop.svg │ ├── bg-pattern-mobile.svg │ ├── favicon-32x32.png │ ├── icon-arrow-down.svg │ ├── illustration-box-desktop.svg │ ├── illustration-woman-online-desktop.svg │ └── illustration-woman-online-mobile.svg ├── index.html ├── package.json ├── postcss.config.js ├── style-guide.md ├── styles.css ├── tailwind.config.js └── yarn.lock ├── four-card-feature-section ├── .gitignore ├── .idea │ ├── .gitignore │ ├── emacs.xml │ ├── four-card-feature-section-master.iml │ ├── misc.xml │ └── modules.xml ├── README.md ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── favicon-32x32.png │ ├── icon-calculator.svg │ ├── icon-karma.svg │ ├── icon-supervisor.svg │ └── icon-team-builder.svg ├── index.html ├── style-guide.md └── style.css ├── fylo-data-storage-component ├── .gitignore ├── README.md ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-desktop.svg │ ├── bg-mobile.svg │ ├── favicon-32x32.png │ ├── icon-document.svg │ ├── icon-folder.svg │ ├── icon-upload.svg │ └── logo.svg ├── index.html ├── style-guide.md └── style.css ├── fylo-landing-page-with-two-column-layout ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── avatar-testimonial.jpg │ ├── bg-curve-desktop.svg │ ├── bg-curve-mobile.svg │ ├── favicon-32x32.png │ ├── icon-arrow.svg │ ├── icon-email.svg │ ├── icon-phone.svg │ ├── icon-quotes.svg │ ├── illustration-1.svg │ ├── illustration-2.svg │ ├── logo-white.svg │ └── logo.svg ├── index.html └── style-guide.md ├── huddle-landing-page-with-alternating-feature-blocks ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-hero-desktop.svg │ ├── bg-hero-mobile.svg │ ├── favicon-32x32.png │ ├── icon-email.svg │ ├── icon-location.svg │ ├── icon-phone.svg │ ├── illustration-flowing-conversation.svg │ ├── illustration-grow-together.svg │ ├── illustration-mockups.svg │ ├── illustration-your-users.svg │ ├── logo-white.svg │ └── logo.svg ├── index.html └── style-guide.md ├── huddle-landing-page-with-single-introductory-section ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-desktop.svg │ ├── bg-mobile.svg │ ├── favicon-32x32.png │ ├── illustration-mockups.svg │ └── logo.svg ├── index.html └── style-guide.md ├── index.html ├── insure-landing-page ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── active-states.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ ├── mobile-design.jpg │ └── mobile-nav-design.jpg ├── images │ ├── bg-pattern-footer-desktop.svg │ ├── bg-pattern-footer-mobile.svg │ ├── bg-pattern-how-we-work-desktop.svg │ ├── bg-pattern-how-we-work-mobile.svg │ ├── bg-pattern-intro-left-desktop.svg │ ├── bg-pattern-intro-left-mobile.svg │ ├── bg-pattern-intro-right-desktop.svg │ ├── bg-pattern-intro-right-mobile.svg │ ├── bg-pattern-mobile-nav.svg │ ├── favicon-32x32.png │ ├── icon-affordable-prices.svg │ ├── icon-close.svg │ ├── icon-facebook-hover.svg │ ├── icon-facebook.svg │ ├── icon-hamburger.svg │ ├── icon-instagram-hover.svg │ ├── icon-instagram.svg │ ├── icon-people-first.svg │ ├── icon-pinterest-hover.svg │ ├── icon-pinterest.svg │ ├── icon-snappy-process.svg │ ├── icon-twitter-hover.svg │ ├── icon-twitter.svg │ ├── image-intro-desktop.jpg │ ├── image-intro-mobile.jpg │ └── logo.svg ├── index.html ├── js │ └── app.js └── style-guide.md ├── intro-component-with-signup-form ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── active-states.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-intro-desktop.png │ ├── bg-intro-mobile.png │ ├── favicon-32x32.png │ └── icon-error.svg ├── index.html ├── scripts │ └── script.js └── style-guide.md ├── ping-coming-soon-page ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── desktop-design.jpg │ ├── desktop-hover-error-states.jpg │ ├── desktop-preview.jpg │ ├── mobile-design.jpg │ └── mobile-error-state.jpg ├── images │ ├── favicon-32x32.png │ ├── illustration-dashboard.png │ └── logo.svg ├── index.html ├── js │ └── script.js └── style-guide.md ├── pricing-component-with-toggle ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── active-states.jpg │ ├── desktop-design-annually.jpg │ ├── desktop-design-monthly.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ ├── mobile-design-annually.jpg │ └── mobile-design-monthly.jpg ├── images │ ├── bg-bottom.svg │ ├── bg-top.svg │ └── favicon-32x32.png ├── index.html ├── js │ └── app.js └── style-guide.md ├── profile-card-component ├── .gitignore ├── README.md ├── compiled.css ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-pattern-bottom.svg │ ├── bg-pattern-card.svg │ ├── bg-pattern-top.svg │ ├── favicon-32x32.png │ └── image-victor.jpg ├── index.html ├── package.json ├── postcss.config.js ├── style-guide.md ├── styles.css ├── tailwind.config.js └── yarn.lock ├── project-tracking-intro-component ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── active-states.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ ├── mobile-design.jpg │ └── mobile-navigation.jpg ├── images │ ├── favicon-32x32.png │ ├── icon-close.svg │ ├── icon-hamburger.svg │ ├── illustration-devices.svg │ └── logo.svg ├── index.html ├── js │ └── app.js └── style-guide.md ├── script.js ├── single-price-grid-component ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ └── favicon-32x32.png ├── index.html └── style-guide.md ├── social-media-dashboard-with-theme-switcher ├── .gitignore ├── README.md ├── css │ └── style.css ├── design │ ├── active-states-dark.jpg │ ├── active-states-light.jpg │ ├── desktop-design-dark.jpg │ ├── desktop-design-light.jpg │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ ├── mobile-design-dark.jpg │ └── mobile-design-light.jpg ├── images │ ├── favicon-32x32.png │ ├── icon-down.svg │ ├── icon-facebook.svg │ ├── icon-instagram.svg │ ├── icon-twitter.svg │ ├── icon-up.svg │ └── icon-youtube.svg ├── index.html ├── js │ └── script.js ├── social-media-dashboard.gif └── style-guide.md ├── social-proof-section ├── .gitignore ├── README.md ├── compiled.css ├── design │ ├── desktop-design.jpg │ ├── desktop-preview.jpg │ └── mobile-design.jpg ├── images │ ├── bg-pattern-bottom-desktop.svg │ ├── bg-pattern-bottom-mobile.svg │ ├── bg-pattern-top-desktop.svg │ ├── bg-pattern-top-mobile.svg │ ├── favicon-32x32.png │ ├── icon-star.svg │ ├── image-anne.jpg │ ├── image-colton.jpg │ └── image-irene.jpg ├── index.html ├── package.json ├── postcss.config.js ├── style-guide.md ├── styles.css ├── tailwind.config.js └── yarn.lock └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/README.md -------------------------------------------------------------------------------- /article-preview-component/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /article-preview-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/README.md -------------------------------------------------------------------------------- /article-preview-component/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/css/style.css -------------------------------------------------------------------------------- /article-preview-component/design/desktop-active-state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/design/desktop-active-state.jpg -------------------------------------------------------------------------------- /article-preview-component/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/design/desktop-design.jpg -------------------------------------------------------------------------------- /article-preview-component/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/design/desktop-preview.jpg -------------------------------------------------------------------------------- /article-preview-component/design/mobile-active-state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/design/mobile-active-state.jpg -------------------------------------------------------------------------------- /article-preview-component/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/design/mobile-design.jpg -------------------------------------------------------------------------------- /article-preview-component/images/avatar-michelle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/avatar-michelle.jpg -------------------------------------------------------------------------------- /article-preview-component/images/drawers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/drawers.jpg -------------------------------------------------------------------------------- /article-preview-component/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/favicon-32x32.png -------------------------------------------------------------------------------- /article-preview-component/images/icon-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/icon-facebook.svg -------------------------------------------------------------------------------- /article-preview-component/images/icon-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/icon-pinterest.svg -------------------------------------------------------------------------------- /article-preview-component/images/icon-share-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/icon-share-white.svg -------------------------------------------------------------------------------- /article-preview-component/images/icon-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/icon-share.svg -------------------------------------------------------------------------------- /article-preview-component/images/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/images/icon-twitter.svg -------------------------------------------------------------------------------- /article-preview-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/index.html -------------------------------------------------------------------------------- /article-preview-component/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/scripts/script.js -------------------------------------------------------------------------------- /article-preview-component/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/article-preview-component/style-guide.md -------------------------------------------------------------------------------- /base-apparel-coming-soon/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /base-apparel-coming-soon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/README.md -------------------------------------------------------------------------------- /base-apparel-coming-soon/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/design/active-states.jpg -------------------------------------------------------------------------------- /base-apparel-coming-soon/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/design/desktop-design.jpg -------------------------------------------------------------------------------- /base-apparel-coming-soon/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/design/desktop-preview.jpg -------------------------------------------------------------------------------- /base-apparel-coming-soon/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/design/mobile-design.jpg -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/bg-pattern-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/bg-pattern-desktop.svg -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/favicon-32x32.png -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/hero-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/hero-desktop.jpg -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/hero-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/hero-mobile.jpg -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/icon-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/icon-arrow.svg -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/icon-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/icon-error.svg -------------------------------------------------------------------------------- /base-apparel-coming-soon/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/images/logo.svg -------------------------------------------------------------------------------- /base-apparel-coming-soon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/index.html -------------------------------------------------------------------------------- /base-apparel-coming-soon/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/script.js -------------------------------------------------------------------------------- /base-apparel-coming-soon/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/style-guide.md -------------------------------------------------------------------------------- /base-apparel-coming-soon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/base-apparel-coming-soon/style.css -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/README.md -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/design/desktop-design-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/design/desktop-design-slide-1.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/design/desktop-design-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/design/desktop-design-slide-2.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/design/desktop-design.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/design/desktop-preview.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/design/mobile-design-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/design/mobile-design-slide-1.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/design/mobile-design-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/design/mobile-design-slide-2.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/bg-pattern-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/bg-pattern-desktop.svg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/favicon-32x32.png -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/icon-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/icon-next.svg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/icon-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/icon-prev.svg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/image-john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/image-john.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/image-tanya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/image-tanya.jpg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/pattern-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/pattern-bg.svg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/pattern-curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/pattern-curve.svg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/images/pattern-quotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/images/pattern-quotes.svg -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/index.html -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/script.js -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/style-guide.md -------------------------------------------------------------------------------- /coding-bootcamp-testimonials-slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/coding-bootcamp-testimonials-slider/style.css -------------------------------------------------------------------------------- /faq-accordion-card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/.gitignore -------------------------------------------------------------------------------- /faq-accordion-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/README.md -------------------------------------------------------------------------------- /faq-accordion-card/compiled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/compiled.css -------------------------------------------------------------------------------- /faq-accordion-card/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/design/active-states.jpg -------------------------------------------------------------------------------- /faq-accordion-card/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/design/desktop-design.jpg -------------------------------------------------------------------------------- /faq-accordion-card/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/design/desktop-preview.jpg -------------------------------------------------------------------------------- /faq-accordion-card/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/design/mobile-design.jpg -------------------------------------------------------------------------------- /faq-accordion-card/images/bg-pattern-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/bg-pattern-desktop.svg -------------------------------------------------------------------------------- /faq-accordion-card/images/bg-pattern-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/bg-pattern-mobile.svg -------------------------------------------------------------------------------- /faq-accordion-card/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/favicon-32x32.png -------------------------------------------------------------------------------- /faq-accordion-card/images/icon-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/icon-arrow-down.svg -------------------------------------------------------------------------------- /faq-accordion-card/images/illustration-box-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/illustration-box-desktop.svg -------------------------------------------------------------------------------- /faq-accordion-card/images/illustration-woman-online-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/illustration-woman-online-desktop.svg -------------------------------------------------------------------------------- /faq-accordion-card/images/illustration-woman-online-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/images/illustration-woman-online-mobile.svg -------------------------------------------------------------------------------- /faq-accordion-card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/index.html -------------------------------------------------------------------------------- /faq-accordion-card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/package.json -------------------------------------------------------------------------------- /faq-accordion-card/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/postcss.config.js -------------------------------------------------------------------------------- /faq-accordion-card/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/style-guide.md -------------------------------------------------------------------------------- /faq-accordion-card/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/styles.css -------------------------------------------------------------------------------- /faq-accordion-card/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/tailwind.config.js -------------------------------------------------------------------------------- /faq-accordion-card/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/faq-accordion-card/yarn.lock -------------------------------------------------------------------------------- /four-card-feature-section/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /four-card-feature-section/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/.idea/.gitignore -------------------------------------------------------------------------------- /four-card-feature-section/.idea/emacs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/.idea/emacs.xml -------------------------------------------------------------------------------- /four-card-feature-section/.idea/four-card-feature-section-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/.idea/four-card-feature-section-master.iml -------------------------------------------------------------------------------- /four-card-feature-section/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/.idea/misc.xml -------------------------------------------------------------------------------- /four-card-feature-section/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/.idea/modules.xml -------------------------------------------------------------------------------- /four-card-feature-section/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/README.md -------------------------------------------------------------------------------- /four-card-feature-section/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/design/desktop-design.jpg -------------------------------------------------------------------------------- /four-card-feature-section/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/design/desktop-preview.jpg -------------------------------------------------------------------------------- /four-card-feature-section/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/design/mobile-design.jpg -------------------------------------------------------------------------------- /four-card-feature-section/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/images/favicon-32x32.png -------------------------------------------------------------------------------- /four-card-feature-section/images/icon-calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/images/icon-calculator.svg -------------------------------------------------------------------------------- /four-card-feature-section/images/icon-karma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/images/icon-karma.svg -------------------------------------------------------------------------------- /four-card-feature-section/images/icon-supervisor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/images/icon-supervisor.svg -------------------------------------------------------------------------------- /four-card-feature-section/images/icon-team-builder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/images/icon-team-builder.svg -------------------------------------------------------------------------------- /four-card-feature-section/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/index.html -------------------------------------------------------------------------------- /four-card-feature-section/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/style-guide.md -------------------------------------------------------------------------------- /four-card-feature-section/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/four-card-feature-section/style.css -------------------------------------------------------------------------------- /fylo-data-storage-component/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /fylo-data-storage-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/README.md -------------------------------------------------------------------------------- /fylo-data-storage-component/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/design/desktop-design.jpg -------------------------------------------------------------------------------- /fylo-data-storage-component/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/design/desktop-preview.jpg -------------------------------------------------------------------------------- /fylo-data-storage-component/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/design/mobile-design.jpg -------------------------------------------------------------------------------- /fylo-data-storage-component/images/bg-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/bg-desktop.svg -------------------------------------------------------------------------------- /fylo-data-storage-component/images/bg-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/bg-mobile.svg -------------------------------------------------------------------------------- /fylo-data-storage-component/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/favicon-32x32.png -------------------------------------------------------------------------------- /fylo-data-storage-component/images/icon-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/icon-document.svg -------------------------------------------------------------------------------- /fylo-data-storage-component/images/icon-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/icon-folder.svg -------------------------------------------------------------------------------- /fylo-data-storage-component/images/icon-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/icon-upload.svg -------------------------------------------------------------------------------- /fylo-data-storage-component/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/images/logo.svg -------------------------------------------------------------------------------- /fylo-data-storage-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/index.html -------------------------------------------------------------------------------- /fylo-data-storage-component/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/style-guide.md -------------------------------------------------------------------------------- /fylo-data-storage-component/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-data-storage-component/style.css -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/README.md -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/css/style.css -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/design/desktop-design.jpg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/design/desktop-preview.jpg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/design/mobile-design.jpg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/avatar-testimonial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/avatar-testimonial.jpg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/bg-curve-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/bg-curve-desktop.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/bg-curve-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/bg-curve-mobile.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/favicon-32x32.png -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/icon-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/icon-arrow.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/icon-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/icon-email.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/icon-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/icon-phone.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/icon-quotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/icon-quotes.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/illustration-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/illustration-1.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/illustration-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/illustration-2.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/logo-white.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/images/logo.svg -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/index.html -------------------------------------------------------------------------------- /fylo-landing-page-with-two-column-layout/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/fylo-landing-page-with-two-column-layout/style-guide.md -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/README.md -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/css/style.css -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/design/desktop-design.jpg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/design/desktop-preview.jpg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/design/mobile-design.jpg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/bg-hero-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/bg-hero-desktop.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/bg-hero-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/bg-hero-mobile.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/favicon-32x32.png -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/icon-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/icon-email.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/icon-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/icon-location.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/icon-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/icon-phone.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/illustration-flowing-conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/illustration-flowing-conversation.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/illustration-grow-together.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/illustration-grow-together.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/illustration-mockups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/illustration-mockups.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/illustration-your-users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/illustration-your-users.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/logo-white.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/images/logo.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/index.html -------------------------------------------------------------------------------- /huddle-landing-page-with-alternating-feature-blocks/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-alternating-feature-blocks/style-guide.md -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/README.md -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/css/style.css -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/design/desktop-design.jpg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/design/desktop-preview.jpg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/design/mobile-design.jpg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/images/bg-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/images/bg-desktop.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/images/bg-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/images/bg-mobile.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/images/favicon-32x32.png -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/images/illustration-mockups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/images/illustration-mockups.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/images/logo.svg -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/index.html -------------------------------------------------------------------------------- /huddle-landing-page-with-single-introductory-section/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/huddle-landing-page-with-single-introductory-section/style-guide.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/index.html -------------------------------------------------------------------------------- /insure-landing-page/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /insure-landing-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/README.md -------------------------------------------------------------------------------- /insure-landing-page/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/css/style.css -------------------------------------------------------------------------------- /insure-landing-page/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/design/active-states.jpg -------------------------------------------------------------------------------- /insure-landing-page/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/design/desktop-design.jpg -------------------------------------------------------------------------------- /insure-landing-page/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/design/desktop-preview.jpg -------------------------------------------------------------------------------- /insure-landing-page/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/design/mobile-design.jpg -------------------------------------------------------------------------------- /insure-landing-page/design/mobile-nav-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/design/mobile-nav-design.jpg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-footer-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-footer-desktop.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-footer-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-footer-mobile.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-how-we-work-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-how-we-work-desktop.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-how-we-work-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-how-we-work-mobile.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-intro-left-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-intro-left-desktop.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-intro-left-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-intro-left-mobile.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-intro-right-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-intro-right-desktop.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-intro-right-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-intro-right-mobile.svg -------------------------------------------------------------------------------- /insure-landing-page/images/bg-pattern-mobile-nav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/bg-pattern-mobile-nav.svg -------------------------------------------------------------------------------- /insure-landing-page/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/favicon-32x32.png -------------------------------------------------------------------------------- /insure-landing-page/images/icon-affordable-prices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-affordable-prices.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-close.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-facebook-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-facebook-hover.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-facebook.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-hamburger.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-instagram-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-instagram-hover.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-instagram.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-people-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-people-first.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-pinterest-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-pinterest-hover.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-pinterest.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-snappy-process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-snappy-process.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-twitter-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-twitter-hover.svg -------------------------------------------------------------------------------- /insure-landing-page/images/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/icon-twitter.svg -------------------------------------------------------------------------------- /insure-landing-page/images/image-intro-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/image-intro-desktop.jpg -------------------------------------------------------------------------------- /insure-landing-page/images/image-intro-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/image-intro-mobile.jpg -------------------------------------------------------------------------------- /insure-landing-page/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/images/logo.svg -------------------------------------------------------------------------------- /insure-landing-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/index.html -------------------------------------------------------------------------------- /insure-landing-page/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/js/app.js -------------------------------------------------------------------------------- /insure-landing-page/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/insure-landing-page/style-guide.md -------------------------------------------------------------------------------- /intro-component-with-signup-form/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /intro-component-with-signup-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/README.md -------------------------------------------------------------------------------- /intro-component-with-signup-form/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/css/style.css -------------------------------------------------------------------------------- /intro-component-with-signup-form/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/design/active-states.jpg -------------------------------------------------------------------------------- /intro-component-with-signup-form/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/design/desktop-design.jpg -------------------------------------------------------------------------------- /intro-component-with-signup-form/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/design/desktop-preview.jpg -------------------------------------------------------------------------------- /intro-component-with-signup-form/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/design/mobile-design.jpg -------------------------------------------------------------------------------- /intro-component-with-signup-form/images/bg-intro-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/images/bg-intro-desktop.png -------------------------------------------------------------------------------- /intro-component-with-signup-form/images/bg-intro-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/images/bg-intro-mobile.png -------------------------------------------------------------------------------- /intro-component-with-signup-form/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/images/favicon-32x32.png -------------------------------------------------------------------------------- /intro-component-with-signup-form/images/icon-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/images/icon-error.svg -------------------------------------------------------------------------------- /intro-component-with-signup-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/index.html -------------------------------------------------------------------------------- /intro-component-with-signup-form/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/scripts/script.js -------------------------------------------------------------------------------- /intro-component-with-signup-form/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/intro-component-with-signup-form/style-guide.md -------------------------------------------------------------------------------- /ping-coming-soon-page/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /ping-coming-soon-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/README.md -------------------------------------------------------------------------------- /ping-coming-soon-page/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/css/style.css -------------------------------------------------------------------------------- /ping-coming-soon-page/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/design/desktop-design.jpg -------------------------------------------------------------------------------- /ping-coming-soon-page/design/desktop-hover-error-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/design/desktop-hover-error-states.jpg -------------------------------------------------------------------------------- /ping-coming-soon-page/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/design/desktop-preview.jpg -------------------------------------------------------------------------------- /ping-coming-soon-page/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/design/mobile-design.jpg -------------------------------------------------------------------------------- /ping-coming-soon-page/design/mobile-error-state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/design/mobile-error-state.jpg -------------------------------------------------------------------------------- /ping-coming-soon-page/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/images/favicon-32x32.png -------------------------------------------------------------------------------- /ping-coming-soon-page/images/illustration-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/images/illustration-dashboard.png -------------------------------------------------------------------------------- /ping-coming-soon-page/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/images/logo.svg -------------------------------------------------------------------------------- /ping-coming-soon-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/index.html -------------------------------------------------------------------------------- /ping-coming-soon-page/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/js/script.js -------------------------------------------------------------------------------- /ping-coming-soon-page/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/ping-coming-soon-page/style-guide.md -------------------------------------------------------------------------------- /pricing-component-with-toggle/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /pricing-component-with-toggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/README.md -------------------------------------------------------------------------------- /pricing-component-with-toggle/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/css/style.css -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/active-states.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/desktop-design-annually.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/desktop-design-annually.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/desktop-design-monthly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/desktop-design-monthly.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/desktop-design.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/desktop-preview.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/mobile-design-annually.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/mobile-design-annually.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/design/mobile-design-monthly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/design/mobile-design-monthly.jpg -------------------------------------------------------------------------------- /pricing-component-with-toggle/images/bg-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/images/bg-bottom.svg -------------------------------------------------------------------------------- /pricing-component-with-toggle/images/bg-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/images/bg-top.svg -------------------------------------------------------------------------------- /pricing-component-with-toggle/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/images/favicon-32x32.png -------------------------------------------------------------------------------- /pricing-component-with-toggle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/index.html -------------------------------------------------------------------------------- /pricing-component-with-toggle/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/js/app.js -------------------------------------------------------------------------------- /pricing-component-with-toggle/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/pricing-component-with-toggle/style-guide.md -------------------------------------------------------------------------------- /profile-card-component/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/.gitignore -------------------------------------------------------------------------------- /profile-card-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/README.md -------------------------------------------------------------------------------- /profile-card-component/compiled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/compiled.css -------------------------------------------------------------------------------- /profile-card-component/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/design/desktop-design.jpg -------------------------------------------------------------------------------- /profile-card-component/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/design/desktop-preview.jpg -------------------------------------------------------------------------------- /profile-card-component/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/design/mobile-design.jpg -------------------------------------------------------------------------------- /profile-card-component/images/bg-pattern-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/images/bg-pattern-bottom.svg -------------------------------------------------------------------------------- /profile-card-component/images/bg-pattern-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/images/bg-pattern-card.svg -------------------------------------------------------------------------------- /profile-card-component/images/bg-pattern-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/images/bg-pattern-top.svg -------------------------------------------------------------------------------- /profile-card-component/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/images/favicon-32x32.png -------------------------------------------------------------------------------- /profile-card-component/images/image-victor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/images/image-victor.jpg -------------------------------------------------------------------------------- /profile-card-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/index.html -------------------------------------------------------------------------------- /profile-card-component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/package.json -------------------------------------------------------------------------------- /profile-card-component/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/postcss.config.js -------------------------------------------------------------------------------- /profile-card-component/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/style-guide.md -------------------------------------------------------------------------------- /profile-card-component/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/styles.css -------------------------------------------------------------------------------- /profile-card-component/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/tailwind.config.js -------------------------------------------------------------------------------- /profile-card-component/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/profile-card-component/yarn.lock -------------------------------------------------------------------------------- /project-tracking-intro-component/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /project-tracking-intro-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/README.md -------------------------------------------------------------------------------- /project-tracking-intro-component/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/css/style.css -------------------------------------------------------------------------------- /project-tracking-intro-component/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/design/active-states.jpg -------------------------------------------------------------------------------- /project-tracking-intro-component/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/design/desktop-design.jpg -------------------------------------------------------------------------------- /project-tracking-intro-component/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/design/desktop-preview.jpg -------------------------------------------------------------------------------- /project-tracking-intro-component/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/design/mobile-design.jpg -------------------------------------------------------------------------------- /project-tracking-intro-component/design/mobile-navigation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/design/mobile-navigation.jpg -------------------------------------------------------------------------------- /project-tracking-intro-component/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/images/favicon-32x32.png -------------------------------------------------------------------------------- /project-tracking-intro-component/images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/images/icon-close.svg -------------------------------------------------------------------------------- /project-tracking-intro-component/images/icon-hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/images/icon-hamburger.svg -------------------------------------------------------------------------------- /project-tracking-intro-component/images/illustration-devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/images/illustration-devices.svg -------------------------------------------------------------------------------- /project-tracking-intro-component/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/images/logo.svg -------------------------------------------------------------------------------- /project-tracking-intro-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/index.html -------------------------------------------------------------------------------- /project-tracking-intro-component/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/js/app.js -------------------------------------------------------------------------------- /project-tracking-intro-component/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/project-tracking-intro-component/style-guide.md -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/script.js -------------------------------------------------------------------------------- /single-price-grid-component/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /single-price-grid-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/README.md -------------------------------------------------------------------------------- /single-price-grid-component/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/css/style.css -------------------------------------------------------------------------------- /single-price-grid-component/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/design/desktop-design.jpg -------------------------------------------------------------------------------- /single-price-grid-component/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/design/desktop-preview.jpg -------------------------------------------------------------------------------- /single-price-grid-component/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/design/mobile-design.jpg -------------------------------------------------------------------------------- /single-price-grid-component/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/images/favicon-32x32.png -------------------------------------------------------------------------------- /single-price-grid-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/index.html -------------------------------------------------------------------------------- /single-price-grid-component/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/single-price-grid-component/style-guide.md -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/README.md -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/css/style.css -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/active-states-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/active-states-dark.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/active-states-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/active-states-light.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/desktop-design-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/desktop-design-dark.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/desktop-design-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/desktop-design-light.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/desktop-design.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/desktop-preview.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/mobile-design-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/mobile-design-dark.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/design/mobile-design-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/design/mobile-design-light.jpg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/favicon-32x32.png -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/icon-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/icon-down.svg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/icon-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/icon-facebook.svg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/icon-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/icon-instagram.svg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/icon-twitter.svg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/icon-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/icon-up.svg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/images/icon-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/images/icon-youtube.svg -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/index.html -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/js/script.js -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/social-media-dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/social-media-dashboard.gif -------------------------------------------------------------------------------- /social-media-dashboard-with-theme-switcher/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-media-dashboard-with-theme-switcher/style-guide.md -------------------------------------------------------------------------------- /social-proof-section/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/.gitignore -------------------------------------------------------------------------------- /social-proof-section/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/README.md -------------------------------------------------------------------------------- /social-proof-section/compiled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/compiled.css -------------------------------------------------------------------------------- /social-proof-section/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/design/desktop-design.jpg -------------------------------------------------------------------------------- /social-proof-section/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/design/desktop-preview.jpg -------------------------------------------------------------------------------- /social-proof-section/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/design/mobile-design.jpg -------------------------------------------------------------------------------- /social-proof-section/images/bg-pattern-bottom-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/bg-pattern-bottom-desktop.svg -------------------------------------------------------------------------------- /social-proof-section/images/bg-pattern-bottom-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/bg-pattern-bottom-mobile.svg -------------------------------------------------------------------------------- /social-proof-section/images/bg-pattern-top-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/bg-pattern-top-desktop.svg -------------------------------------------------------------------------------- /social-proof-section/images/bg-pattern-top-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/bg-pattern-top-mobile.svg -------------------------------------------------------------------------------- /social-proof-section/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/favicon-32x32.png -------------------------------------------------------------------------------- /social-proof-section/images/icon-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/icon-star.svg -------------------------------------------------------------------------------- /social-proof-section/images/image-anne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/image-anne.jpg -------------------------------------------------------------------------------- /social-proof-section/images/image-colton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/image-colton.jpg -------------------------------------------------------------------------------- /social-proof-section/images/image-irene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/images/image-irene.jpg -------------------------------------------------------------------------------- /social-proof-section/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/index.html -------------------------------------------------------------------------------- /social-proof-section/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/package.json -------------------------------------------------------------------------------- /social-proof-section/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/postcss.config.js -------------------------------------------------------------------------------- /social-proof-section/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/style-guide.md -------------------------------------------------------------------------------- /social-proof-section/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/styles.css -------------------------------------------------------------------------------- /social-proof-section/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/tailwind.config.js -------------------------------------------------------------------------------- /social-proof-section/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/social-proof-section/yarn.lock -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbteja1998/frontend-mentor-challenges/HEAD/style.css --------------------------------------------------------------------------------