-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add responsive design for mobile view
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters