Skip to content

Commit f683aef

Browse files
Kapil GowruKapil Gowru
authored andcommitted
feat: working on docs home
1 parent 52942cd commit f683aef

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

fern/components/FernFooter.tsx

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
import React from 'react';
22
import { FernStatusWidget } from './FernStatus';
33

4+
import builtwithfernLight from './images/builtwithfern-light.svg';
5+
import builtwithfernDark from './images/builtwithfern-dark.svg';
6+
import builtwithfernFrameLight from './images/builtwithfern-frame-light.svg';
7+
import builtwithfernFrameDark from './images/builtwithfern-frame-dark.svg';
8+
import soc2 from './images/soc2.svg';
9+
410
export const FernFooter = () => {
511
return (
612
<footer className="footer">
713
<div className="footer-top">
814
{/* Left Column - Logo and Status */}
915
<a className="footer-logo" href="https://buildwithfern.com">
10-
<img src="./images/builtwithfern-light.svg" alt="Fern" className="footer-logo-img dark:hidden" noZoom />
11-
<img src="./images/builtwithfern-dark.svg" alt="Fern" className="footer-logo-img hidden dark:block" noZoom />
16+
<img src={builtwithfernLight} alt="Fern" className="footer-logo-img dark:hidden" />
17+
<img src={builtwithfernDark} alt="Fern" className="footer-logo-img hidden dark:block" />
1218

13-
<img src="./images/builtwithfern-frame-light.svg" alt="Fern" className="footer-logo-frame dark:hidden" noZoom />
14-
<img src="./images/builtwithfern-frame-dark.svg" alt="Fern" className="footer-logo-frame hidden dark:block" noZoom />
19+
<img src={builtwithfernFrameLight} alt="Fern" className="footer-logo-frame dark:hidden" />
20+
<img src={builtwithfernFrameDark} alt="Fern" className="footer-logo-frame hidden dark:block" />
1521
</a>
1622

1723
<div className="footer-status">
@@ -22,7 +28,7 @@ export const FernFooter = () => {
2228
<FernStatusWidget />
2329

2430
<a className="soc2-badge" href="https://security.buildwithfern.com/">
25-
<img src="./images/soc2.svg" alt="Soc 2 Type II" className="soc2-badge-img" noZoom />
31+
<img src={soc2} alt="Soc 2 Type II" className="soc2-badge-img" />
2632
<span className="status-text">Soc 2 Type II</span>
2733
</a>
2834
</div>

0 commit comments

Comments
 (0)