Skip to content

update masthead illustration #20

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

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
64f3f89
add industries grid component
jesicasusanto May 31, 2023
a51c0a4
add styles to button and card
jesicasusanto Jun 2, 2023
9db04ec
change position of grids
jesicasusanto Jun 2, 2023
570dbec
made the cards responsive to screensize
jesicasusanto Jun 5, 2023
b12642f
made cards responsive to screensize
jesicasusanto Jun 5, 2023
c4da9d3
deleted .container
jesicasusanto Jun 5, 2023
4d0756a
change cards color to dark purple
jesicasusanto Jun 5, 2023
184932d
remove the get started cta and push text up
jesicasusanto Jun 8, 2023
dd7ef57
add styles to industry card
jesicasusanto Jun 8, 2023
7a517da
add styles to industry
jesicasusanto Jun 8, 2023
bb6df9b
add value prop, change button color
jesicasusanto Jun 8, 2023
cbeba2c
edit styles
jesicasusanto Jun 8, 2023
ce44b4b
fix grid and button responsiveness
jesicasusanto Jun 9, 2023
4898c10
make grids margin symmetrical
jesicasusanto Jun 13, 2023
c51e789
fix format
jesicasusanto Jun 13, 2023
c51b825
format
jesicasusanto Jun 13, 2023
68353f7
restore get started button and paddings/margins
jesicasusanto Jun 15, 2023
35535c2
make button secondary and link get started button
jesicasusanto Jun 15, 2023
5bcd983
added padding between bottom grids and footer
jesicasusanto Jun 15, 2023
4a0f9b9
link join waitlist of developers to footer
jesicasusanto Jun 15, 2023
14ed3a2
adjust bottom padding
jesicasusanto Jun 15, 2023
fdda84d
add icons to each grid
jesicasusanto Jun 16, 2023
fedf453
add an icon to each grid
jesicasusanto Jun 16, 2023
5dadb70
add robot hand svg
jesicasusanto Jun 16, 2023
2f0838f
Merge branch 'feat/industries_grid' into update-masthead-illustration
jesicasusanto Jun 16, 2023
a19f11a
add new mast head illustration
jesicasusanto Jun 19, 2023
7c44b96
add left margin to icon to center it
jesicasusanto Jun 19, 2023
38855be
Merge branch 'OpenAdaptAI:main' into update-masthead-illustration
jesicasusanto Jun 23, 2023
59e4c39
remove box
jesicasusanto Jun 23, 2023
2283242
fix fail deploy
jesicasusanto Jun 23, 2023
c03c186
Merge branch 'OpenAdaptAI:main' into update-masthead-illustration
jesicasusanto Jun 26, 2023
0ded96a
remove box
jesicasusanto Jun 26, 2023
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
113 changes: 113 additions & 0 deletions components/IndustriesGrid.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
import styles from './IndustriesGrid.module.css';
import Image from 'next/image';

export default function IndustriesGrid() {

const gridData = [
{
title: 'HR',
descriptions: 'Transform HR operations and boost team productivity with automation, driving strategic decision-making and talent management.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-human-resources.svg',
},
{
title: 'Law',
descriptions: 'Streamline your legal procedures and amplify case management efficacy by delegating repetitive tasks to our automation solution.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-law.svg',
},
{
title: 'Insurance',
descriptions: 'Optimize operational costs',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-insurance.svg',
},
{
title: 'Healthcare',
descriptions: 'Optimize patient care and medical record keeping by integrating our automation tool, freeing healthcare professionals for critical tasks.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-healthcare.svg',
},
{
title: 'Freight',
descriptions: 'Upgrade your logistics, ensure on-time deliveries and increase efficiency by automating repetitive tasks in your freight business.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-freight.svg',
},
{
title: 'Pharmacy',
descriptions: 'Reinforce accuracy, patient safety and efficient inventory management in your pharmacy with our dependable automation product.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-pharmacy.svg',
},
{
title: 'Customer Support',
descriptions: 'Revolutionize customer service by automifying mundane tasks, enhancing response times and fostering superior customer satisfaction.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-customer-support.svg',
},
{
title: 'Sales Development',
descriptions: 'Elevate your sales strategy by automating repetitive tasks, freeing your team to focus on strategic client engagement and revenue growth.',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-sales-development.svg',
},
{
title: 'Let us build for you',
descriptions: 'Customize automation solutions',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-build.svg',
},
{
title: 'Developers',
descriptions: 'Simplify software development processes',
buttonLabel: 'Join Waitlist',
logo: '/images/noun-developer.svg',
},
];

return (
<div className={styles.background}>
<div>
<h2 className={styles.heading}>Achieve more with less effort.</h2>
<p className={styles.p}>
Our technology observes and records your software interactions, automating repetitive tasks.<br />
Spend less time on manual processes and more on tasks that truly matter.
</p>
</div>
<br />
<h1 className={styles.heading} id="industries">
Revolutionizing Industries with AI-First Automation for Growth and Transformation.
</h1>
<div className={styles.row}>
{gridData.map((grid, index) => (
<div key={index} className={styles.card}>
<div className={styles.logo}>
<Image
className="invert text-center inline"
priority
src={grid.logo}
height={60}
width={60}
alt={grid.title}
/>
</div>
<h2 className={styles.title}>{grid.title}</h2>
<ul className={styles.descriptions}>
{grid.descriptions.split('\n').map((description) => (
<li>{description}</li>
))}
</ul>
{grid.title === 'Developers' ? (
<a href="#start" className={styles.button}>
{grid.buttonLabel}
</a>
) : (
<button className={styles.button}>{grid.buttonLabel}</button>
)}
</div>
))}
</div>
</div>
);
}
78 changes: 78 additions & 0 deletions components/IndustriesGrid.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
.background {
background: rgb(10, 27, 96);
background: radial-gradient( circle, rgba(10, 27, 96, 1) 19%, rgba(12, 16, 46, 1) 44%, rgba(0, 0, 30, 1) 66% );
}
.row {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-bottom:25px;
}
.card {
font-size: medium;
width: 380px;
height: 330px;
margin: 20px;
padding: 20px;
border-radius: 30px;
background: rgba(62, 48, 103, 0.6);
display: flex;
flex-direction: column;
align-items: center;
/* Add this line */
}
.title {
margin: 10px;
color: whitesmoke;
font-size: 22px;
font-weight: bold;
text-align: center;
}
.button {
background-color: transparent;
color: #b58bff;
padding: 6px 15px;
border: 2px solid #b58bff;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
margin-top: auto;
margin-bottom: 10px;
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
width: 40%;
margin-left: auto;
margin-right: auto;
}
.button:hover {
background-color: #661ae6;
border: #661ae6;
color: white;
}
.descriptions {
text-align: center;
margin-bottom: 10px;
padding: 0;
font-size: 15px;
color: rgb(204, 194, 194);
}
.heading {
font-size: 30px;
font-weight: bold;
text-align: center;
margin: 10px;
}
.p {
padding: 30px;
font-size: 18px;
text-align: center;
color: rgb(204, 194, 194);
}
.logo {
transition: transform 0.3s ease;
}
.logo:hover {
transform: scale(1.2);
}
27 changes: 8 additions & 19 deletions components/MastHead.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import Link from "next/link"
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faBoxOpen, faBrain } from '@fortawesome/free-solid-svg-icons'
import { motion } from "framer-motion"
import Image from 'next/image';

import EmailForm from '@components/EmailForm'
import IndustriesGrid from '@components/IndustriesGrid'

import styles from './MastHead.module.css'

Expand Down Expand Up @@ -33,33 +32,22 @@ export default function Home() {
repeatDelay: 0,
}}
>
{/*
<FontAwesomeIcon icon={faBrain} className="text-5xl mb-2" />
<Image
className="hue-rotate-90 invert text-center inline absolute -ml-4 -mt-10"
priority
src="/images/favicon.svg"
height={64}
width={64}
alt="Large Language Model"
/>
*/}
<Image
className="invert text-center inline"
priority
src="/images/favicon.svg"
height={64}
width={64}
src="/images/masthead.svg"
height={100}
width={100}
alt="Large Language Model"
style={{ marginLeft: '55px' }}
/>
</motion.div>
<FontAwesomeIcon icon={faBoxOpen} className="text-5xl" />
</div>
<h2 className="text-4xl my-10 font-extralight">
AI for Humans.
</h2>
<div>
<Link className="btn btn-primary ml-2 mt-2" href="#start">
<Link className="btn btn-primary ml-2 mt-2" href="#industries">
Get Started
</Link>
</div>
Expand Down Expand Up @@ -102,6 +90,7 @@ export default function Home() {
</div>
</div>
</div>
<IndustriesGrid />
{/*
<Footer />
*/}
Expand Down Expand Up @@ -174,4 +163,4 @@ export default function Home() {
</footer>
</>
)
}
}
2 changes: 1 addition & 1 deletion components/MastHead.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
rgba(0,0,60,1) 75%,
rgba(0,0,45,1) 100%
);
}
}
Loading