Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ const Footer = ()=> {
return (
<>
<FeedbackButtons />
<SubscribeButton />
{/* <SubscribeButton /> */}
<div className='footer-cta rounded'>
<div className='flex items-center justify-between'>
<h3 className='cta-heading m-0'>Learn how to execute low code tests across 3000+ device / browser environments.</h3>
<a href='/request-demo' target={'_blank'} className='cta-link border border-green-600 px-4 py-1.5 bg-green-600 text-white rounded h-10'>Schedule a free demo</a>
</div>
</div>
<div className="footer_greyBox">
<svg width="109" height="26" viewBox="0 0 109 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
Expand Down
21 changes: 17 additions & 4 deletions src/components/Footer.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.footer_docs{
margin-top: 0px;
position: relative;
top: 40px;
margin: 2rem 0;
@media (max-width: 576px) {
overflow: hidden;
top: 20px;
Expand Down Expand Up @@ -202,6 +200,7 @@
border-radius: 3px;
background-color: #FFF;
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.03);
width: 100%;
@media only screen and (max-width: 767px) {
max-width: 100%;
width: 100%;
Expand All @@ -222,7 +221,7 @@
background: #03A973 !important;
border: 1px solid #03A973 !important;
max-width: 100%;
width: 92%;
width: 97%;
height: 40px;
border-radius: 4px;
-webkit-border-radius: 2px;
Expand Down Expand Up @@ -321,4 +320,18 @@
.text_end{
text-align: end!important;
}
}
.footer-cta{
background-color: #EFEFEF;
padding: 2rem 6rem;
.cta-heading{
flex: 0 0 70%;
font-size: 24px !important;
line-height: 38px !important;
margin: 0 !important;
}
.cta-link{
font-weight: 600;
font-size: 18px;
}
}
2 changes: 1 addition & 1 deletion src/components/LeftNav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//height: 100%;
position: sticky;
height: 100vh;
top: 0px;
top: 4.5rem;
font-size: 14px;
overflow: scroll;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica, Arial, sans-serif;
Expand Down
62 changes: 62 additions & 0 deletions src/components/header.jsx

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/components/navcards.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const data = [

const Card = ({ title, description, path }) => {
return (
<a href={path} className="card md:w-5/12 p-7 cursor-pointer justify-between flex mr-2 mb-2 w-full ">
<a href={path} className="card md:w-5/12 p-7 cursor-pointer justify-between flex w-full ">
<div className="w-fit">
<span className="card_heading">{title}</span><br/>
<span className="card_desc">{description}</span>
Expand All @@ -68,7 +68,7 @@ const Card = ({ title, description, path }) => {

const CardList = () => {
return (
<div className="w-full flex flex-wrap">
<div className="w-full flex flex-wrap gap-2">
{data.map((item) => (
<Card key={item.id} title={item.title} description={item.description} path={item.path}/>
))}
Expand Down
48 changes: 8 additions & 40 deletions src/pages/tutorials/index.jsx

Large diffs are not rendered by default.

104 changes: 35 additions & 69 deletions src/templates/page.jsx

Large diffs are not rendered by default.

30 changes: 28 additions & 2 deletions src/templates/page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ body{
height: 100%;
}

#root_header > div {
#root_header{
position: sticky;
top: 0;
z-index: 99;
background-color: #fff;
> div {
@media (max-width: 576px) {
// position: relative;
// z-index: 10;
Expand Down Expand Up @@ -68,6 +73,7 @@ body{
}
}
}
}

.doc-page {

Expand Down Expand Up @@ -561,7 +567,7 @@ code[class*="language-"] {
.homepage_footer{
flex-basis: 100%;
justify-content: space-between;
margin-bottom: 4rem;
margin: 2rem 0 4rem;
.pagination_buttons{
@media (min-width: $screen_768) {
margin: 0;
Expand All @@ -586,4 +592,24 @@ code[class*="language-"] {
background-size: cover;
background-position: center;
}
}
.float-cta{
@apply px-4 py-8 flex justify-center flex-col;
background-color: #EFEFEF;
width: 95%;
margin: 3rem 0 0;
.cta-title{
margin: 0 !important;
font-size: 24px !important;
line-height: 36px !important;
text-align: center;
}
.signup-btn{
margin: 1rem 0 0;
@apply flex justify-center;
}
}

.fixed{
display: none;
}