Skip to content

Commit 2d11257

Browse files
committed
www: added dark mode and convertet svg -> jsx
1 parent b8c1cc5 commit 2d11257

File tree

17 files changed

+287
-115
lines changed

17 files changed

+287
-115
lines changed

www/public/brands/medium_logo.svg

Lines changed: 0 additions & 13 deletions
This file was deleted.

www/public/brands/reddit_logo.svg

Lines changed: 0 additions & 15 deletions
This file was deleted.

www/public/brands/stack_overflow_logo.svg

Lines changed: 0 additions & 12 deletions
This file was deleted.

www/public/brands/techcrunch_logo.svg

Lines changed: 0 additions & 12 deletions
This file was deleted.

www/src/app/(landing)/_assets/brands.ts

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import { BrandsLogoType, CustomSVGProps } from '../_types';
2+
import MediumSVG from './medium-logo';
3+
import RedditSVG from './reddit-logo';
4+
import StackOverflowSVG from './stackoverflow-logo';
5+
import TechCrunchSVG from './techcrunch-logo';
6+
import WiredSVG from './wired-logo';
7+
8+
export const brandsLogo: BrandsLogoType<CustomSVGProps>[] = [
9+
{
10+
id: '1',
11+
fc: RedditSVG,
12+
alt: 'reddit-logo',
13+
},
14+
{
15+
id: '2',
16+
fc: StackOverflowSVG,
17+
alt: 'stackoverflow-logo',
18+
},
19+
{
20+
id: '3',
21+
fc: MediumSVG,
22+
alt: 'medium-logo',
23+
},
24+
{
25+
id: '4',
26+
fc: TechCrunchSVG,
27+
alt: 'techcrunch-logo',
28+
},
29+
{
30+
id: '5',
31+
fc: WiredSVG,
32+
alt: 'wired-logo',
33+
},
34+
{
35+
id: '6',
36+
fc: RedditSVG,
37+
alt: 'reddit1-svg',
38+
},
39+
];

0 commit comments

Comments
 (0)