Skip to content

Commit

Permalink
Close #55
Browse files Browse the repository at this point in the history
  • Loading branch information
dostuffthatmatters committed Sep 13, 2021
1 parent ae7568c commit d20d9d6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
Binary file added src/assets/images/image-01-create.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/image-02-collect.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/image-03-analyze.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/components/landing-section/landing-section-2-demo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import React, {useState} from 'react';
import {icons} from '@assets/icons/index';
import LandingPageSection from './section';
import DemoImage1 from '@assets/images/image-01-create.png';
import DemoImage2 from '@assets/images/image-02-collect.png';
import DemoImage3 from '@assets/images/image-03-analyze.png';

const BulletPoint = (props: {
icon: React.ReactNode;
Expand Down Expand Up @@ -68,6 +71,12 @@ export default function LandingSection2Demo() {
<div className='relative w-full max-w-xl mx-auto overflow-hidden rounded-lg'>
<div className='relative w-full h-0 pt-[calc((9/16)*100%)]'>
<div className='absolute top-0 w-full h-full bg-gray-600' />
<img
className='absolute top-0 w-full h-full'
src={
[DemoImage1, DemoImage2, DemoImage3][imageIndex]
}
/>
<button
className={
chevronButtonStyle + ' right-12 md:right-10'
Expand Down

0 comments on commit d20d9d6

Please sign in to comment.