Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix text and buttons #25

Merged
merged 1 commit into from
Mar 15, 2024
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: 4 additions & 4 deletions src/components/Home/Navbar/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ a#github {
justify-content: center;
}

@media only screen and (min-width: 1145px) and (max-width: 1368px) {
@media only screen and (min-width: 1145px) and (max-width: 1368px) {
#navbar>#right-buttons {
margin: 0;
}
Expand All @@ -95,10 +95,10 @@ a#github {
#navbar-small {
position: fixed;
top: 0;

width: 100%;
height: 64px;

display: flex;
flex-direction: row;
align-items: center;
Expand All @@ -114,7 +114,7 @@ a#github {
#navbar>#central-links {
display: none;
}

#navbar>#right-buttons {
display: none;
}
Expand Down
8 changes: 4 additions & 4 deletions src/components/Home/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export const Navbar = () => {
<Hamburger
menuItems={menuItems}
buttonsItems={
[<button id="primary" onClick={handleClickCloud}>
Try cloud
[<button id="primary-large" onClick={handleClickCloud}>
Domino Cloud (beta)
</button>,
<button id="secondary" onClick={handleClickContact}>
Contact
Expand All @@ -54,8 +54,8 @@ export const Navbar = () => {
</ul>
<ul id="right-buttons" className='ul'>
<li className='li'>
<button id="primary" onClick={handleClickCloud}>
Try cloud
<button id="primary-large" onClick={handleClickCloud}>
Domino Cloud (beta)
</button>
</li>
<li className='li'>
Expand Down
5 changes: 3 additions & 2 deletions src/components/Home/Session1/TitleGroup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ export const TitleGroup = () => {
</div>

<div id="subtitle-container">
<h3 id="subtitle">You have the <b>idea</b>, Domino simplifies the process through an <b>intuitive workflow</b>, <i>no coding required</i>, and the result is a <b>seamless journey</b> from concept to reality.</h3>
{/* <h3 id="subtitle">You have the <b>idea</b>, Domino simplifies the process through an <b>intuitive workflow</b>, <i>no coding required</i>, and the result is a <b>seamless journey</b> from concept to reality.</h3> */}
<h3 id="subtitle">You have the <b>idea</b>, Domino allows you to realize it through an <b>intuitive workflow</b>, <i>no coding required</i>!</h3>
</div>

<div id="button-container">
<button id="primary" onClick={handleClickCloud}>Try for free</button>
<button id="primary" onClick={handleClickCloud}>Try Domino</button>
<button id="tertiary" onClick={handleClickDocs}>Learn more</button>
</div>
</div>
Expand Down
17 changes: 17 additions & 0 deletions src/pages/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@ button#primary {
border-radius: 8px;
}

button#primary-large {

border: none;
padding: 0;
cursor: pointer;

background: #00B140;
color: #fff;

padding-left: 10px;
padding-right: 10px;
width: fit-content;
height: 32px;
border-radius: 8px;

}

button#primary:hover {

border: none;
Expand Down
Loading