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
10 changes: 9 additions & 1 deletion apps/website/src/components/landing/PilotFooterCTA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ export function PilotFooterCTA() {
padding: '0 2rem',
}}
>
<style>{`.pilot-footer-secondary-btn:hover { border-color: rgba(255,255,255,0.6) !important; }`}</style>
<style>{`
.pilot-footer-secondary-btn:hover { border-color: rgba(255,255,255,0.6) !important; }
@media (max-width: 767px) {
.pilot-footer-inner { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.pilot-footer-heading { font-size: clamp(28px, 6vw, 42px) !important; }
}
`}</style>
<motion.div
className="pilot-footer-inner"
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
Expand Down Expand Up @@ -53,6 +60,7 @@ export function PilotFooterCTA() {
{/* Heading */}
<h2
id="pilot-footer-cta-heading"
className="pilot-footer-heading"
style={{
fontFamily: 'var(--font-garamond, "EB Garamond", Georgia, serif)',
fontSize: '42px',
Expand Down
7 changes: 6 additions & 1 deletion apps/website/src/components/landing/PilotSolution.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ const STEPS = [

export function PilotSolution() {
return (
<section style={{ padding: '80px 32px' }}>
<section className="pilot-solution" style={{ padding: '80px 32px' }}>
<style>{`
@media (max-width: 767px) {
.pilot-solution { padding: 60px 20px !important; }
}
`}</style>
<motion.div
initial={{ opacity: 0, y: 16 }}
whileInView={{ opacity: 1, y: 0 }}
Expand Down
9 changes: 8 additions & 1 deletion apps/website/src/components/landing/TheStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ function Connector({ fromRgb, toRgb }: { fromRgb: string; toRgb: string }) {

export function TheStack() {
return (
<section style={{ padding: '80px 32px' }}>
<section className="the-stack" style={{ padding: '80px 32px' }}>
<style>{`
@media (max-width: 767px) {
.the-stack { padding: 60px 20px !important; }
.the-stack-card { padding: 24px 20px 20px !important; }
}
`}</style>
<motion.div
initial={{ opacity: 0, y: 16 }}
whileInView={{ opacity: 1, y: 0 }}
Expand Down Expand Up @@ -109,6 +115,7 @@ export function TheStack() {
/>
)}
<motion.div
className="the-stack-card"
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
Expand Down
3 changes: 2 additions & 1 deletion apps/website/src/components/landing/WhitePaperSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function WhitePaperSection() {
};

return (
<section style={{ padding: '80px 32px' }}>
<section className="wp-section" style={{ padding: '80px 32px' }}>
<style>{`
.wp-grid {
display: grid;
Expand All @@ -52,6 +52,7 @@ export function WhitePaperSection() {
padding: 48px 56px;
}
@media (max-width: 767px) {
.wp-section { padding: 60px 20px !important; }
.wp-grid {
grid-template-columns: 1fr;
gap: 32px;
Expand Down
Loading