Skip to content

Commit

Permalink
feat: add responsive design for mobile view
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuuriii committed Nov 18, 2023
1 parent 4e92b2a commit 06bbffd
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 4 deletions.
43 changes: 39 additions & 4 deletions app/components/integrations/Integrations.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,47 @@
import Image from 'next/image';
import Padding from '../padding/padding';
import Teams from '@/assets/integrations/mTeams.svg';
import Drive from '@/assets/integrations/drive.svg';
import Dropbox from '@/assets/integrations/dropbox.svg';
import OneDrive from '@/assets/integrations/oneDrive.svg';

export default function Integrations() {
return (
<Padding>
<div>
<div>
<div>kkk</div>
<div></div>
<div className='mt-[6rem]'>
<div className='flex flex-col items-center'>
<div className='h-[10rem] w-[13rem] flex flex-wrap justify-between'>
<Image className='h-[5rem] w-auto' src={OneDrive} alt='' />
<Image className='h-[4.5rem] w-auto' src={Dropbox} alt='' />
<Image
className='h-[4.5rem] w-auto mt-[1.5rem]'
src={Drive}
alt=''
/>
<Image
className='h-[4.5rem] w-auto mt-[1.5rem]'
src={Teams}
alt=''
/>
</div>
<div className='mt-[3rem] flex flex-col items-center'>
<div className='hidden lg:flex'>
<span></span>
<h3>INTEGRATIONS</h3>
</div>
<h1 className='text-[#2F327D] text-[1.5rem] font-[600] text-center'>
200+ educational tools and platform{' '}
<span className='text-[#F48C06]'>integrations</span>
</h1>
<p className='text-[#696984] text-center mt-[1rem]'>
Schoology has every tool your classroom needs and comes
pre-integrated with more than 200+ tools, student information
systems (SIS), and education platforms.
</p>
<button className='mt-[2rem] rounded-[2rem] py-[0.5rem] px-[1.5rem] text-[#F48C06] border-[1px] border-solid border-[#F48C06] font-[400]'>
See All Integrations
</button>
</div>
</div>
</div>
</Padding>
Expand Down
2 changes: 2 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import ForTeachAndLearn from './components/forTeachAndLearn/forTeachAndLearn';
import Assesment from './components/assesment/assesment';
import ForEducator from './components/forEducator/forEducator';
import Discussion from './components/discussion/discussion';
import Integrations from './components/integrations/Integrations';

export default function Home() {
return (
Expand All @@ -26,6 +27,7 @@ export default function Home() {
<Assesment />
<ForEducator />
<Discussion />
<Integrations />
</main>
</>
);
Expand Down
9 changes: 9 additions & 0 deletions assets/integrations/drive.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 06bbffd

Please sign in to comment.