Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
73 commits
Select commit Hold shift + click to select a range
437223e
feat: adding homepage designs
Jul 1, 2025
6f60f17
feat: adding homepage designs
Jul 1, 2025
e90c46e
feat: adding homepage designs
Jul 1, 2025
c400924
feat: adding homepage designs
Jul 1, 2025
9a4d633
feat: adding homepage designs
Jul 1, 2025
b5595db
feat: adding homepage designs
Jul 1, 2025
b9dacef
feat: adding homepage designs
Jul 1, 2025
a66ea01
feat: adding homepage designs
Jul 1, 2025
e54661d
feat: adding homepage designs
Jul 1, 2025
6ba1c36
feat: adding homepage designs
Jul 1, 2025
6d8c1f8
feat: adding homepage designs
Jul 1, 2025
22d29d9
feat: adding homepage designs
Jul 2, 2025
0ee72e5
feat: adding homepage designs
Jul 2, 2025
20202a5
feat: adding homepage designs
Jul 2, 2025
d5f41ba
feat: adding homepage designs
Jul 2, 2025
100cab7
Merge remote-tracking branch 'origin/main' into feat/homepage-v2
Jul 2, 2025
885fd5a
Merge remote-tracking branch 'origin/main' into feat/homepage-v2
Jul 2, 2025
4e53134
feat: added footer image
Jul 2, 2025
c6807c2
feat: added footer image
Jul 2, 2025
3b7179a
feat: added footer image
Jul 3, 2025
4da1801
feat: added footer image
Jul 3, 2025
a525373
feat: added footer image
Jul 3, 2025
796dbbc
feat: added footer image
Jul 3, 2025
4d30f74
feat: added footer image
Jul 3, 2025
6b30db9
feat: added footer image
Jul 3, 2025
df8c15f
feat: added footer image
Jul 3, 2025
4d77097
feat: added footer image
Jul 3, 2025
c015410
feat: added footer image
Jul 3, 2025
6616c1b
feat: added footer image
Jul 7, 2025
d82979a
feat: added mobile styling
Jul 7, 2025
57f312a
feat: added mobile styling
Jul 7, 2025
352d001
Merge remote-tracking branch 'origin/main' into feat/homepage-v3
Jul 7, 2025
e12e22b
feat: updated some frame styling
Jul 7, 2025
bc5fd66
feat: cleaned up home page styling and added empty page callouts
Jul 7, 2025
c1df663
feat: cleaned up home page styling and added empty page callouts
Jul 7, 2025
ad866b2
feat: cleaned up home page styling and added empty page callouts
Jul 8, 2025
f425345
feat: cleaned up product selector icons
Jul 8, 2025
9eac7ae
feat: adding a custom component for the footer
Jul 8, 2025
0c12bef
feat: fixed mobile product swticher
Jul 8, 2025
b04d971
feat: added react status badge
Jul 8, 2025
cb9a3d3
feat: updated product switcher
Jul 8, 2025
92c0608
feat: updated product switcher
Jul 8, 2025
7db2a8c
feat: added empty sdk pages
Jul 8, 2025
462cb0b
feat: merged with main
Jul 9, 2025
47b772d
feat: merged with mainOA
Jul 9, 2025
a641b8f
feat: working on docs home
Jul 11, 2025
573117f
feat: working on docs home
Jul 11, 2025
324a47b
feat: working on docs home
Jul 14, 2025
3f39869
feat: working on docs home
Jul 14, 2025
cffa811
feat: working on docs home
Jul 14, 2025
bd48c60
feat: working on docs home
Jul 14, 2025
a7e0e67
feat: working on docs home
Jul 14, 2025
52942cd
feat: working on docs home
Jul 14, 2025
f683aef
feat: working on docs home
Jul 14, 2025
2f5c526
feat: working on docs home
Jul 15, 2025
1e6bce0
feat: add global footer
Jul 15, 2025
98e1509
feat: added global footer in footer-dist directory
Jul 15, 2025
21a28cc
fix: imported fern footer
Jul 15, 2025
0066337
fix: imported fern footer
Jul 15, 2025
3f387a1
fix: imported fern footer
Jul 15, 2025
89d3a72
fix: imported fern footer
Jul 15, 2025
7a29e4e
fix: bundling main.css
Jul 15, 2025
a92168a
fix: added maincss
Jul 15, 2025
006452f
fix: removed css styling from styles.css
Jul 16, 2025
40211db
fix: removed css styling from styles.css
Jul 16, 2025
69b01eb
fix: removed css styling from styles.css
Jul 16, 2025
b013bb8
fix: removed css styling from styles.css
Jul 16, 2025
95e0a24
fix: removed css styling from styles.css
Jul 16, 2025
264aa7a
fix: removed css styling from styles.css
Jul 16, 2025
db86b60
fix: updated to add a global footer with proper width
Jul 16, 2025
016c6a8
fix: added global footer
Jul 16, 2025
bf3dd14
fix: fixed help seciton on home
Jul 16, 2025
95f9f24
fix: fixed help seciton on home
Jul 16, 2025
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
17 changes: 17 additions & 0 deletions card-group-example.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<CardGroup cols={2}>
<Card title="Quickstart">
Start building beautiful documentation in under 5 minutes.
</Card>

<Card title="Configure with ease">
One simple file that can be used to generate documentation that fits your brand.
</Card>

<Card title="Flexible component library">
Use pre-built or custom React components for a polished look.
</Card>

<Card title="Visual Editor">
Modify your documentation without touching code and publish to your GitHub.
</Card>
</CardGroup>
33 changes: 23 additions & 10 deletions fern/assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,24 @@
font-size: 1.25rem;
font-weight: bold;
color: var(--grayscale-12);
display: flex;
gap: 0.25rem;
align-items: center;
text-decoration: none;

img {
height: 1rem;
opacity: 0;
transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
transform: translateX(0px);
}

&:hover {
img {
opacity: 1;
transform: translateX(2px);
}
}
}

.card-description {
Expand Down Expand Up @@ -464,9 +482,7 @@
}

.help-section {
border-bottom: 1px solid var(--grayscale-5);
padding: 3rem 2rem;
margin-bottom: 3rem;
display: flex;
flex-direction: column;
gap: 1rem;
Expand Down Expand Up @@ -494,16 +510,16 @@
align-items: center;
gap: 0.25rem;

svg {
/* svg {
display: none !important;
}
} */

img {
svg {
transition: filter 150ms ease;
}

&:hover {
img {
svg {
filter: saturate(1) opacity(1);
}
}
Expand Down Expand Up @@ -545,10 +561,6 @@
text-decoration: none;
transition: background-color 150ms ease, color 150ms ease;

svg {
display: none !important;
}

&:hover {
background-color: var(--grayscale-a4);

Expand All @@ -560,6 +572,7 @@

.soc2-badge-img {
width: 1.5rem;
height: 1.5rem;
background-color: #62636C;
border-radius: 1000px;
}
Expand Down
84 changes: 84 additions & 0 deletions fern/components/FernFooter.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
import React from 'react';
import { FernStatusWidget } from './FernStatus';

import { BuiltWithFernLight } from './images/builtwithfern-light';
import { BuiltWithFernDark } from './images/builtwithfern-dark';
import { BuiltWithFernFrameLight } from './images/builtwithfern-frame-light';
import { BuiltWithFernFrameDark } from './images/builtwithfern-frame-dark';
import { Soc2Logo } from './images/soc2';

export const FernFooter = () => {
return (
<footer className="footer">
<div className="footer-top">
{/* Left Column - Logo and Status */}
<a className="footer-logo" href="https://buildwithfern.com">
<BuiltWithFernLight className="footer-logo-img dark:hidden" />
<BuiltWithFernDark className="footer-logo-img hidden dark:block" />

<BuiltWithFernFrameLight className="footer-logo-frame dark:hidden" />
<BuiltWithFernFrameDark className="footer-logo-frame hidden dark:block" />
</a>

<div className="footer-status">
{/* <a className="status-badge" href="https://status.buildwithfern.com">
<div className="status-indicator"></div>
<span className="status-text">All systems operational</span>
</a> */}
<FernStatusWidget />

<a className="soc2-badge" href="https://security.buildwithfern.com/">
<Soc2Logo className="soc2-badge-img" />
<span className="status-text">Soc 2 Type II</span>
</a>
</div>
</div>

{/* Footer Links */}
<div className="footer-links">
<div className="footer-bottom-text"> © 2025 Fern • Located in Brooklyn, NY </div>
{/* Newsletter Signup */}
{/* <div className="newsletter-container">
<div className="newsletter-label">Subscribe to our updates</div>
<div className="newsletter-form">
<div className="newsletter-input">
<span>marty.mcfly@hillvalley.edu</span>
</div>
<button className="newsletter-button">
</button>
</div>
</div> */}
<div className="footer-columns">
<div className="footer-column">
<h4 className="footer-column-title">Documentation</h4>
<div className="footer-column-links">
<a href="/openapi/getting-started/overview" className="footer-link">OpenAPI Compatibility</a>
<a href="/sdks/overview/introduction" className="footer-link">SDKs</a>
<a href="docs/getting-started/overview" className="footer-link">Docs</a>
</div>
</div>

<div className="footer-column">
<h4 className="footer-column-title">Resources</h4>
<div className="footer-column-links">
<a href="https://buildwithfern.com/blog" className="footer-link">Blog</a>
<a href="#support" className="footer-link">Support</a>
<a href="https://buildwithfern.com/pricing" className="footer-link">Pricing</a>
<a href="https://buildwithfern.com/slack" className="footer-link">Slack</a>
</div>
</div>

<div className="footer-column">
<h4 className="footer-column-title">Company</h4>
<div className="footer-column-links">
<a href="https://brandfetch.com/buildwithfern.com" className="footer-link">Brand Kit</a>
<a href="https://github.com/fern-api/fern" className="footer-link">Github</a>
<a href="https://buildwithfern.com/privacy-policy" className="footer-link">Privacy Policy</a>
<a href="https://buildwithfern.com/terms-of-service" className="footer-link">Terms of Service</a>
</div>
</div>
</div>
</div>
</footer>
);
};
5 changes: 3 additions & 2 deletions fern/components/FernStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface StatusState {
}

export const FernStatusWidget = () => {
const [status, setStatus] = React.useState<StatusState>({
const [status, setStatus] = useState<StatusState>({
dotClass: 'is-loading',
statusMessage: 'Checking status...'
});
Expand Down Expand Up @@ -109,7 +109,7 @@ export const FernStatusWidget = () => {
}
};

React.useEffect(() => {
useEffect(() => {
fetchStatus();
const interval = setInterval(fetchStatus, refreshInterval);
return () => clearInterval(interval);
Expand Down Expand Up @@ -160,6 +160,7 @@ export const FernStatusWidget = () => {
cursor: pointer;
text-decoration: none;
transition: background-color 150ms ease, color 150ms ease;
height: 2rem;
}

.fern-status-widget svg {
Expand Down
37 changes: 37 additions & 0 deletions fern/components/images/BuiltWithFernLogo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
interface BuiltWithFernLogoProps {
width?: number;
height?: number;
className?: string;
}

export const BuiltWithFernLogo = ({
width = 145,
height = 16,
className = ""
}: BuiltWithFernLogoProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 145 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
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"
fill="#EEEEF0"
/>
<path
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"
fill="#51C233"
/>
<path
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"
fill="#EEEEF0"
/>
</svg>
);
};

export default BuiltWithFernLogo;
39 changes: 39 additions & 0 deletions fern/components/images/builtwithfern-dark.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import React from 'react';

interface BuiltWithFernDarkProps {
width?: number;
height?: number;
className?: string;
}

export const BuiltWithFernDark = ({
width = 145,
height = 16,
className = ""
}: BuiltWithFernDarkProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 145 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
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"
fill="#EEEEF0"
/>
<path
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"
fill="#51C233"
/>
<path
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"
fill="#EEEEF0"
/>
</svg>
);
};

export default BuiltWithFernDark;
Loading