Skip to content

Commit 240cbd5

Browse files
kgowruKapil GowruKapil GowruKapil GowruKapil Gowru
authored
Feat/docs homepage (#40)
Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]>
1 parent d1ca46f commit 240cbd5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+13660
-342
lines changed

card-group-example.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<CardGroup cols={2}>
2+
<Card title="Quickstart">
3+
Start building beautiful documentation in under 5 minutes.
4+
</Card>
5+
6+
<Card title="Configure with ease">
7+
One simple file that can be used to generate documentation that fits your brand.
8+
</Card>
9+
10+
<Card title="Flexible component library">
11+
Use pre-built or custom React components for a polished look.
12+
</Card>
13+
14+
<Card title="Visual Editor">
15+
Modify your documentation without touching code and publish to your GitHub.
16+
</Card>
17+
</CardGroup>

fern/assets/styles.css

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,24 @@
350350
font-size: 1.25rem;
351351
font-weight: bold;
352352
color: var(--grayscale-12);
353+
display: flex;
354+
gap: 0.25rem;
355+
align-items: center;
356+
text-decoration: none;
357+
358+
img {
359+
height: 1rem;
360+
opacity: 0;
361+
transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
362+
transform: translateX(0px);
363+
}
364+
365+
&:hover {
366+
img {
367+
opacity: 1;
368+
transform: translateX(2px);
369+
}
370+
}
353371
}
354372

355373
.card-description {
@@ -464,9 +482,7 @@
464482
}
465483

466484
.help-section {
467-
border-bottom: 1px solid var(--grayscale-5);
468485
padding: 3rem 2rem;
469-
margin-bottom: 3rem;
470486
display: flex;
471487
flex-direction: column;
472488
gap: 1rem;
@@ -494,16 +510,16 @@
494510
align-items: center;
495511
gap: 0.25rem;
496512

497-
svg {
513+
/* svg {
498514
display: none !important;
499-
}
515+
} */
500516

501-
img {
517+
svg {
502518
transition: filter 150ms ease;
503519
}
504520

505521
&:hover {
506-
img {
522+
svg {
507523
filter: saturate(1) opacity(1);
508524
}
509525
}
@@ -545,10 +561,6 @@
545561
text-decoration: none;
546562
transition: background-color 150ms ease, color 150ms ease;
547563

548-
svg {
549-
display: none !important;
550-
}
551-
552564
&:hover {
553565
background-color: var(--grayscale-a4);
554566

@@ -560,6 +572,7 @@
560572

561573
.soc2-badge-img {
562574
width: 1.5rem;
575+
height: 1.5rem;
563576
background-color: #62636C;
564577
border-radius: 1000px;
565578
}

fern/components/FernFooter.tsx

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
import React from 'react';
2+
import { FernStatusWidget } from './FernStatus';
3+
4+
import { BuiltWithFernLight } from './images/builtwithfern-light';
5+
import { BuiltWithFernDark } from './images/builtwithfern-dark';
6+
import { BuiltWithFernFrameLight } from './images/builtwithfern-frame-light';
7+
import { BuiltWithFernFrameDark } from './images/builtwithfern-frame-dark';
8+
import { Soc2Logo } from './images/soc2';
9+
10+
export const FernFooter = () => {
11+
return (
12+
<footer className="footer">
13+
<div className="footer-top">
14+
{/* Left Column - Logo and Status */}
15+
<a className="footer-logo" href="https://buildwithfern.com">
16+
<BuiltWithFernLight className="footer-logo-img dark:hidden" />
17+
<BuiltWithFernDark className="footer-logo-img hidden dark:block" />
18+
19+
<BuiltWithFernFrameLight className="footer-logo-frame dark:hidden" />
20+
<BuiltWithFernFrameDark className="footer-logo-frame hidden dark:block" />
21+
</a>
22+
23+
<div className="footer-status">
24+
{/* <a className="status-badge" href="https://status.buildwithfern.com">
25+
<div className="status-indicator"></div>
26+
<span className="status-text">All systems operational</span>
27+
</a> */}
28+
<FernStatusWidget />
29+
30+
<a className="soc2-badge" href="https://security.buildwithfern.com/">
31+
<Soc2Logo className="soc2-badge-img" />
32+
<span className="status-text">Soc 2 Type II</span>
33+
</a>
34+
</div>
35+
</div>
36+
37+
{/* Footer Links */}
38+
<div className="footer-links">
39+
<div className="footer-bottom-text"> © 2025 Fern • Located in Brooklyn, NY </div>
40+
{/* Newsletter Signup */}
41+
{/* <div className="newsletter-container">
42+
<div className="newsletter-label">Subscribe to our updates</div>
43+
<div className="newsletter-form">
44+
<div className="newsletter-input">
45+
<span>[email protected]</span>
46+
</div>
47+
<button className="newsletter-button">
48+
</button>
49+
</div>
50+
</div> */}
51+
<div className="footer-columns">
52+
<div className="footer-column">
53+
<h4 className="footer-column-title">Documentation</h4>
54+
<div className="footer-column-links">
55+
<a href="/openapi/getting-started/overview" className="footer-link">OpenAPI Compatibility</a>
56+
<a href="/sdks/overview/introduction" className="footer-link">SDKs</a>
57+
<a href="docs/getting-started/overview" className="footer-link">Docs</a>
58+
</div>
59+
</div>
60+
61+
<div className="footer-column">
62+
<h4 className="footer-column-title">Resources</h4>
63+
<div className="footer-column-links">
64+
<a href="https://buildwithfern.com/blog" className="footer-link">Blog</a>
65+
<a href="#support" className="footer-link">Support</a>
66+
<a href="https://buildwithfern.com/pricing" className="footer-link">Pricing</a>
67+
<a href="https://buildwithfern.com/slack" className="footer-link">Slack</a>
68+
</div>
69+
</div>
70+
71+
<div className="footer-column">
72+
<h4 className="footer-column-title">Company</h4>
73+
<div className="footer-column-links">
74+
<a href="https://brandfetch.com/buildwithfern.com" className="footer-link">Brand Kit</a>
75+
<a href="https://github.com/fern-api/fern" className="footer-link">Github</a>
76+
<a href="https://buildwithfern.com/privacy-policy" className="footer-link">Privacy Policy</a>
77+
<a href="https://buildwithfern.com/terms-of-service" className="footer-link">Terms of Service</a>
78+
</div>
79+
</div>
80+
</div>
81+
</div>
82+
</footer>
83+
);
84+
};

fern/components/FernStatus.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface StatusState {
1616
}
1717

1818
export const FernStatusWidget = () => {
19-
const [status, setStatus] = React.useState<StatusState>({
19+
const [status, setStatus] = useState<StatusState>({
2020
dotClass: 'is-loading',
2121
statusMessage: 'Checking status...'
2222
});
@@ -109,7 +109,7 @@ export const FernStatusWidget = () => {
109109
}
110110
};
111111

112-
React.useEffect(() => {
112+
useEffect(() => {
113113
fetchStatus();
114114
const interval = setInterval(fetchStatus, refreshInterval);
115115
return () => clearInterval(interval);
@@ -160,6 +160,7 @@ export const FernStatusWidget = () => {
160160
cursor: pointer;
161161
text-decoration: none;
162162
transition: background-color 150ms ease, color 150ms ease;
163+
height: 2rem;
163164
}
164165
165166
.fern-status-widget svg {
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
interface BuiltWithFernLogoProps {
2+
width?: number;
3+
height?: number;
4+
className?: string;
5+
}
6+
7+
export const BuiltWithFernLogo = ({
8+
width = 145,
9+
height = 16,
10+
className = ""
11+
}: BuiltWithFernLogoProps) => {
12+
return (
13+
<svg
14+
width={width}
15+
height={height}
16+
viewBox="0 0 145 16"
17+
fill="none"
18+
xmlns="http://www.w3.org/2000/svg"
19+
className={className}
20+
>
21+
<path
22+
d="M9.79656 4.8H14.5006C15.5139 4.8 16.3192 5.05067 16.9166 5.552C17.5139 6.04267 17.8126 6.71467 17.8126 7.568C17.8126 8.112 17.6739 8.608 17.3966 9.056C17.1192 9.504 16.7512 9.84 16.2926 10.064C16.8579 10.2667 17.3059 10.608 17.6366 11.088C17.9672 11.5573 18.1326 12.1173 18.1326 12.768C18.1326 13.7387 17.8286 14.5227 17.2206 15.12C16.6126 15.7067 15.7752 16 14.7086 16H9.79656V4.8ZM14.4846 14.528C15.1246 14.528 15.6206 14.3627 15.9726 14.032C16.3246 13.7013 16.5006 13.2373 16.5006 12.64C16.5006 12.0427 16.3246 11.5893 15.9726 11.28C15.6312 10.96 15.1352 10.8 14.4846 10.8H11.3966V14.528H14.4846ZM14.2766 9.424C14.8846 9.424 15.3539 9.28533 15.6846 9.008C16.0152 8.72 16.1806 8.32533 16.1806 7.824C16.1806 7.32267 16.0152 6.93867 15.6846 6.672C15.3539 6.40533 14.8846 6.272 14.2766 6.272H11.3966V9.424H14.2766ZM22.5778 16.224C21.6285 16.224 20.8871 15.9413 20.3538 15.376C19.8205 14.8107 19.5538 14 19.5538 12.944V8.304H21.1058V12.8C21.1058 13.472 21.2551 13.9787 21.5538 14.32C21.8631 14.6507 22.3005 14.816 22.8658 14.816C23.4525 14.816 23.9165 14.6293 24.2578 14.256C24.6098 13.872 24.7858 13.3707 24.7858 12.752V8.304H26.3378V16H24.9618V15.12C24.7165 15.4827 24.3858 15.76 23.9698 15.952C23.5538 16.1333 23.0898 16.224 22.5778 16.224ZM28.0746 8.304H29.6266V16H28.0746V8.304ZM27.9786 4.912H29.7066V6.752H27.9786V4.912ZM33.0334 16C32.4894 16 32.0948 15.888 31.8494 15.664C31.6041 15.44 31.4814 15.0667 31.4814 14.544V4.8H33.0334V14.064C33.0334 14.2667 33.0761 14.416 33.1614 14.512C33.2468 14.5973 33.3854 14.64 33.5774 14.64H34.5534V16H33.0334ZM37.9539 16C37.2819 16 36.7966 15.856 36.4979 15.568C36.1993 15.28 36.0499 14.8053 36.0499 14.144V9.664H34.0339V8.304H36.0499V6H37.6019V8.304H40.0179V9.664H37.6019V13.84C37.6019 14.1173 37.6659 14.32 37.7939 14.448C37.9219 14.576 38.1299 14.64 38.4179 14.64H40.0179V16H37.9539ZM43.5709 8.304H45.1869L46.8989 14.272L48.6109 8.304H50.3869L52.0989 14.272L53.8109 8.304H55.4269L53.0429 16H51.2189L49.5069 10.064L47.7789 16H45.9549L43.5709 8.304ZM56.3746 8.304H57.9266V16H56.3746V8.304ZM56.2786 4.912H58.0066V6.752H56.2786V4.912ZM62.5971 16C61.9251 16 61.4397 15.856 61.1411 15.568C60.8424 15.28 60.6931 14.8053 60.6931 14.144V9.664H58.6771V8.304H60.6931V6H62.2451V8.304H64.6611V9.664H62.2451V13.84C62.2451 14.1173 62.3091 14.32 62.4371 14.448C62.5651 14.576 62.7731 14.64 63.0611 14.64H64.6611V16H62.5971ZM65.6727 4.8H67.2247V9.056C67.4807 8.736 67.8007 8.496 68.1847 8.336C68.5794 8.16533 69.0114 8.08 69.4807 8.08C70.4407 8.08 71.1927 8.368 71.7367 8.944C72.2807 9.50933 72.5527 10.3147 72.5527 11.36V16H71.0007V11.504C71.0007 10.832 70.8407 10.3307 70.5207 10C70.2114 9.65867 69.7687 9.488 69.1927 9.488C68.5954 9.488 68.1154 9.68 67.7527 10.064C67.4007 10.4373 67.2247 10.9333 67.2247 11.552V16H65.6727V4.8Z"
23+
fill="#EEEEF0"
24+
/>
25+
<path
26+
d="M92.3848 7.82856C91.332 6.93847 89.7459 6.58166 88.3402 7.62074C88.2755 7.66779 88.1952 7.58741 88.2442 7.52468C88.5775 7.09532 88.9637 6.63263 89.2754 6.16798C89.593 5.69157 90.0675 5.35044 90.6145 5.18379C93.5259 4.30155 92.6515 0.00012207 92.6515 0.00012207C92.6515 0.00012207 88.154 0.290282 88.7088 4.17019C88.801 4.81913 88.6284 5.47983 88.2226 5.99545C87.7246 6.62479 87.1463 7.22667 86.7267 7.66191C86.6385 7.7521 86.4895 7.66583 86.5248 7.54428C86.9306 6.17778 87.2266 4.06432 85.8209 2.70175L83.8427 1.05881L83.4624 1.56071C82.3312 3.05268 82.6625 5.15634 84.1564 6.28561C85.0132 6.93259 85.4014 7.63643 85.3406 8.40888C85.3033 8.87157 85.0936 9.30485 84.7799 9.64794C84.1898 10.2949 83.6388 10.9889 83.2134 11.7928C83.1546 11.9045 82.984 11.8614 82.9899 11.734C83.0507 10.4067 82.9232 7.41489 80.6882 6.34639L78.1866 5.37984L77.9925 5.9582C77.3631 7.82464 78.3924 9.81851 80.2569 10.4518C81.8783 11.0027 82.4566 12.0476 82.0665 13.6141C82.0488 13.671 81.7665 15.2845 81.8057 16.0001H83.6036C83.6643 14.8904 84.8289 14.1611 85.8386 14.614C86.1229 14.7414 86.415 14.9238 86.7149 15.159C88.3226 16.4255 90.6909 16.1256 91.9555 14.516L92.3162 14.0572L90.042 12.4241C88.4814 11.1968 86.3993 11.7516 84.8583 12.8024C84.7289 12.8907 84.5642 12.7495 84.6368 12.6084C86.4993 8.95391 88.9206 8.96175 89.8695 9.77341C91.0203 10.7576 92.7632 10.5812 93.7396 9.4264L94.0199 9.09507L92.3829 7.82856H92.3848Z"
27+
fill="#51C233"
28+
/>
29+
<path
30+
d="M111.257 4.27539C114.524 4.27557 116.739 6.46855 116.739 9.98145C116.739 10.3833 116.718 10.788 116.673 11.2568H108.84C108.974 12.6434 109.892 13.4053 111.391 13.4053C112.398 13.4052 113.045 12.9803 113.338 12.375H116.538C115.888 14.5682 114.189 16 111.37 16C107.991 15.9998 105.754 13.6502 105.754 10.0703H105.751C105.751 6.55739 107.989 4.27539 111.257 4.27539ZM132.095 4.27539C134.801 4.2756 136.503 6.02159 136.503 8.95117V15.665H133.369V9.28613C133.369 7.81028 132.697 7.09379 131.444 7.09375C130.191 7.09375 129.362 7.96679 129.362 9.37598V15.6621H126.229V4.61035H128.983V5.72852C129.633 4.76615 130.82 4.27539 132.095 4.27539ZM106.379 2.72949H103.312C102.662 2.72949 102.305 2.99745 102.305 3.64746V4.60938H105.706V7.33887H102.305V15.6621H99.1709V7.33887H96.4199V4.60938H99.1709V3.26758C99.1709 1.11907 100.402 0 102.528 0H106.379V2.72949ZM120.583 6.55371C120.851 5.30087 121.747 4.60645 123.156 4.60645H125.126V4.98535C125.126 6.28287 124.074 7.33493 122.776 7.33496C121.546 7.33496 120.963 7.96297 120.963 9.21582V15.6611H117.829V4.60645H120.583V6.55371ZM111.257 6.73633C109.736 6.73633 108.907 7.58722 108.817 8.88477H113.584V8.83984C113.584 7.58713 112.777 6.73647 111.257 6.73633Z"
31+
fill="#EEEEF0"
32+
/>
33+
</svg>
34+
);
35+
};
36+
37+
export default BuiltWithFernLogo;
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import React from 'react';
2+
3+
interface BuiltWithFernDarkProps {
4+
width?: number;
5+
height?: number;
6+
className?: string;
7+
}
8+
9+
export const BuiltWithFernDark = ({
10+
width = 145,
11+
height = 16,
12+
className = ""
13+
}: BuiltWithFernDarkProps) => {
14+
return (
15+
<svg
16+
width={width}
17+
height={height}
18+
viewBox="0 0 145 16"
19+
fill="none"
20+
xmlns="http://www.w3.org/2000/svg"
21+
className={className}
22+
>
23+
<path
24+
d="M9.79656 4.8H14.5006C15.5139 4.8 16.3192 5.05067 16.9166 5.552C17.5139 6.04267 17.8126 6.71467 17.8126 7.568C17.8126 8.112 17.6739 8.608 17.3966 9.056C17.1192 9.504 16.7512 9.84 16.2926 10.064C16.8579 10.2667 17.3059 10.608 17.6366 11.088C17.9672 11.5573 18.1326 12.1173 18.1326 12.768C18.1326 13.7387 17.8286 14.5227 17.2206 15.12C16.6126 15.7067 15.7752 16 14.7086 16H9.79656V4.8ZM14.4846 14.528C15.1246 14.528 15.6206 14.3627 15.9726 14.032C16.3246 13.7013 16.5006 13.2373 16.5006 12.64C16.5006 12.0427 16.3246 11.5893 15.9726 11.28C15.6312 10.96 15.1352 10.8 14.4846 10.8H11.3966V14.528H14.4846ZM14.2766 9.424C14.8846 9.424 15.3539 9.28533 15.6846 9.008C16.0152 8.72 16.1806 8.32533 16.1806 7.824C16.1806 7.32267 16.0152 6.93867 15.6846 6.672C15.3539 6.40533 14.8846 6.272 14.2766 6.272H11.3966V9.424H14.2766ZM22.5778 16.224C21.6285 16.224 20.8871 15.9413 20.3538 15.376C19.8205 14.8107 19.5538 14 19.5538 12.944V8.304H21.1058V12.8C21.1058 13.472 21.2551 13.9787 21.5538 14.32C21.8631 14.6507 22.3005 14.816 22.8658 14.816C23.4525 14.816 23.9165 14.6293 24.2578 14.256C24.6098 13.872 24.7858 13.3707 24.7858 12.752V8.304H26.3378V16H24.9618V15.12C24.7165 15.4827 24.3858 15.76 23.9698 15.952C23.5538 16.1333 23.0898 16.224 22.5778 16.224ZM28.0746 8.304H29.6266V16H28.0746V8.304ZM27.9786 4.912H29.7066V6.752H27.9786V4.912ZM33.0334 16C32.4894 16 32.0948 15.888 31.8494 15.664C31.6041 15.44 31.4814 15.0667 31.4814 14.544V4.8H33.0334V14.064C33.0334 14.2667 33.0761 14.416 33.1614 14.512C33.2468 14.5973 33.3854 14.64 33.5774 14.64H34.5534V16H33.0334ZM37.9539 16C37.2819 16 36.7966 15.856 36.4979 15.568C36.1993 15.28 36.0499 14.8053 36.0499 14.144V9.664H34.0339V8.304H36.0499V6H37.6019V8.304H40.0179V9.664H37.6019V13.84C37.6019 14.1173 37.6659 14.32 37.7939 14.448C37.9219 14.576 38.1299 14.64 38.4179 14.64H40.0179V16H37.9539ZM43.5709 8.304H45.1869L46.8989 14.272L48.6109 8.304H50.3869L52.0989 14.272L53.8109 8.304H55.4269L53.0429 16H51.2189L49.5069 10.064L47.7789 16H45.9549L43.5709 8.304ZM56.3746 8.304H57.9266V16H56.3746V8.304ZM56.2786 4.912H58.0066V6.752H56.2786V4.912ZM62.5971 16C61.9251 16 61.4397 15.856 61.1411 15.568C60.8424 15.28 60.6931 14.8053 60.6931 14.144V9.664H58.6771V8.304H60.6931V6H62.2451V8.304H64.6611V9.664H62.2451V13.84C62.2451 14.1173 62.3091 14.32 62.4371 14.448C62.5651 14.576 62.7731 14.64 63.0611 14.64H64.6611V16H62.5971ZM65.6727 4.8H67.2247V9.056C67.4807 8.736 67.8007 8.496 68.1847 8.336C68.5794 8.16533 69.0114 8.08 69.4807 8.08C70.4407 8.08 71.1927 8.368 71.7367 8.944C72.2807 9.50933 72.5527 10.3147 72.5527 11.36V16H71.0007V11.504C71.0007 10.832 70.8407 10.3307 70.5207 10C70.2114 9.65867 69.7687 9.488 69.1927 9.488C68.5954 9.488 68.1154 9.68 67.7527 10.064C67.4007 10.4373 67.2247 10.9333 67.2247 11.552V16H65.6727V4.8Z"
25+
fill="#EEEEF0"
26+
/>
27+
<path
28+
d="M92.3848 7.82856C91.332 6.93847 89.7459 6.58166 88.3402 7.62074C88.2755 7.66779 88.1952 7.58741 88.2442 7.52468C88.5775 7.09532 88.9637 6.63263 89.2754 6.16798C89.593 5.69157 90.0675 5.35044 90.6145 5.18379C93.5259 4.30155 92.6515 0.00012207 92.6515 0.00012207C92.6515 0.00012207 88.154 0.290282 88.7088 4.17019C88.801 4.81913 88.6284 5.47983 88.2226 5.99545C87.7246 6.62479 87.1463 7.22667 86.7267 7.66191C86.6385 7.7521 86.4895 7.66583 86.5248 7.54428C86.9306 6.17778 87.2266 4.06432 85.8209 2.70175L83.8427 1.05881L83.4624 1.56071C82.3312 3.05268 82.6625 5.15634 84.1564 6.28561C85.0132 6.93259 85.4014 7.63643 85.3406 8.40888C85.3033 8.87157 85.0936 9.30485 84.7799 9.64794C84.1898 10.2949 83.6388 10.9889 83.2134 11.7928C83.1546 11.9045 82.984 11.8614 82.9899 11.734C83.0507 10.4067 82.9232 7.41489 80.6882 6.34639L78.1866 5.37984L77.9925 5.9582C77.3631 7.82464 78.3924 9.81851 80.2569 10.4518C81.8783 11.0027 82.4566 12.0476 82.0665 13.6141C82.0488 13.671 81.7665 15.2845 81.8057 16.0001H83.6036C83.6643 14.8904 84.8289 14.1611 85.8386 14.614C86.1229 14.7414 86.415 14.9238 86.7149 15.159C88.3226 16.4255 90.6909 16.1256 91.9555 14.516L92.3162 14.0572L90.042 12.4241C88.4814 11.1968 86.3993 11.7516 84.8583 12.8024C84.7289 12.8907 84.5642 12.7495 84.6368 12.6084C86.4993 8.95391 88.9206 8.96175 89.8695 9.77341C91.0203 10.7576 92.7632 10.5812 93.7396 9.4264L94.0199 9.09507L92.3829 7.82856H92.3848Z"
29+
fill="#51C233"
30+
/>
31+
<path
32+
d="M111.257 4.27539C114.524 4.27557 116.739 6.46855 116.739 9.98145C116.739 10.3833 116.718 10.788 116.673 11.2568H108.84C108.974 12.6434 109.892 13.4053 111.391 13.4053C112.398 13.4052 113.045 12.9803 113.338 12.375H116.538C115.888 14.5682 114.189 16 111.37 16C107.991 15.9998 105.754 13.6502 105.754 10.0703H105.751C105.751 6.55739 107.989 4.27539 111.257 4.27539ZM132.095 4.27539C134.801 4.2756 136.503 6.02159 136.503 8.95117V15.665H133.369V9.28613C133.369 7.81028 132.697 7.09379 131.444 7.09375C130.191 7.09375 129.362 7.96679 129.362 9.37598V15.6621H126.229V4.61035H128.983V5.72852C129.633 4.76615 130.82 4.27539 132.095 4.27539ZM106.379 2.72949H103.312C102.662 2.72949 102.305 2.99745 102.305 3.64746V4.60938H105.706V7.33887H102.305V15.6621H99.1709V7.33887H96.4199V4.60938H99.1709V3.26758C99.1709 1.11907 100.402 0 102.528 0H106.379V2.72949ZM120.583 6.55371C120.851 5.30087 121.747 4.60645 123.156 4.60645H125.126V4.98535C125.126 6.28287 124.074 7.33493 122.776 7.33496C121.546 7.33496 120.963 7.96297 120.963 9.21582V15.6611H117.829V4.60645H120.583V6.55371ZM111.257 6.73633C109.736 6.73633 108.907 7.58722 108.817 8.88477H113.584V8.83984C113.584 7.58713 112.777 6.73647 111.257 6.73633Z"
33+
fill="#EEEEF0"
34+
/>
35+
</svg>
36+
);
37+
};
38+
39+
export default BuiltWithFernDark;

0 commit comments

Comments
 (0)