Skip to content

Commit

Permalink
Merge pull request #13 from Tauffer-Consulting/landing-fixes
Browse files Browse the repository at this point in the history
minor fixes
  • Loading branch information
luiztauffer authored Dec 2, 2023
2 parents 7d6ae18 + 5e016f1 commit 66ce915
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 9 deletions.
3 changes: 3 additions & 0 deletions src/components/HomepageCardsRowSession/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ function Feature({ title, Svg, description }: FeatureItem) {
export default function HomepageCardsRowSession(): JSX.Element {
return (
<section className={styles.features}>
<h1 className={styles.textTitle}>
Made to be open, reliable and scalable
</h1>
<div className="container">
<div className={clsx("cardContainer", styles.cardContainer)}>
{FeatureList.map((props, idx) => (
Expand Down
10 changes: 10 additions & 0 deletions src/components/HomepageCardsRowSession/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
.textTitle {
font-size: 2rem;
font-weight: 800;
text-align: center;
margin-bottom: 2rem;
max-width: 100%;
}

.cardContainer {
display: flex;
justify-content: space-around;
Expand Down Expand Up @@ -34,6 +42,8 @@


.features {
padding-top: 2rem;
padding-bottom: 2rem;
background-color: #5c6472;
}

Expand Down
4 changes: 3 additions & 1 deletion src/components/HomepageContactSession/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ export default function HomepageContactSession(): JSX.Element {

return (
<section id="contact" className={styles.contactSession}>
<h1 className={styles.textTitle}>
Get in touch with the maintainers
</h1>
<div className={styles.contentContainer}>
<img className={styles.featureImg} src={imageUrl} alt="Get in touch" />
<div className={styles.textContent}>
<h2>Get in touch with the maintainers!</h2>
<p>
Are you interested in using Domino for your business?
We would love to hear from you! You can reach us at:
Expand Down
10 changes: 9 additions & 1 deletion src/components/HomepageContactSession/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
.contactSession {
padding: 20px;
padding: 2rem;
background-color: rgb(255, 255, 255);
color: black;
}

.textTitle {
font-size: 2rem;
font-weight: 800;
text-align: center;
margin-bottom: 2rem;
max-width: 100%;
}

.contentContainer {
display: flex;
align-items: center;
Expand Down
7 changes: 0 additions & 7 deletions src/components/HomepageProblemSession/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,3 @@ export default function HomepageProblemSession(): JSX.Element {
</section>
);
}


{/* <p>Most professionals face barriers in accessing and building with advanced data and AI methods,
which often requires programming skills for an impactful integration.
Domino is here to empower individuals with access to state-of-the-art tools,
bridging the gap between visionaries and data/AI expertise.
</p> */}

0 comments on commit 66ce915

Please sign in to comment.