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 15, 2023
1 parent 2f70528 commit 7346e33
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions app/components/withSKilline/withSkilline.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import Padding from '../padding/padding';

export default function WithSkilline() {
return (
<Padding>
<div className='mt-[3rem]'>
<div>
<div className='flex flex-col items-center xl:items-start'>
<h1
className='text-[#2F327D] mb-[1rem] font-[600] text-[1.5rem] text-center lg:text-left md:w-[38rem]'
style={{ fontFamily: 'poppins, sans-serif' }}
>
Everything you can do in a physical classroom,{' '}
<span className='text-[#F48C06]'>you can do with Skilline</span>
</h1>
<p
className='text-[#696984] text-center xl:text-left'
style={{ fontFamily: 'poppins, sans-serif' }}
>
Skilline’s school management software helps traditional and online
schools manage scheduling, attendance, payments and virtual
classrooms all in one secure cloud-based system.
</p>
<button
className='mt-[1rem] text-[#696984] underline'
style={{ fontFamily: 'poppins, sans-serif' }}
>
Learn more
</button>
</div>
<div></div>
</div>
</div>
</Padding>
);
}
2 changes: 2 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Header from './components/header/header';
import Company from './components/company/company';
import AllinOne from './components/allinOne/allinOne';
import WhatIs from './components/whatIs/whatIs';
import WithSkilline from './components/withSKilline/withSkilline';

export default function Home() {
return (
Expand All @@ -14,6 +15,7 @@ export default function Home() {
<Company />
<AllinOne />
<WhatIs />
<WithSkilline />
</main>
</>
);
Expand Down

0 comments on commit 7346e33

Please sign in to comment.