File tree Expand file tree Collapse file tree 6 files changed +4
-9
lines changed Expand file tree Collapse file tree 6 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 1
1
import { BlogCardsColumns } from '@/components/containers/CardColumns/BlogCardsColumns' ;
2
- import Card from '@/components/containers/Card' ;
3
2
import { BlogCard } from '@/components/containers/Card/BlogCard' ;
4
3
import Title from '@/components/snippets/Title' ;
5
4
import Link from 'next/link' ;
Original file line number Diff line number Diff line change 1
1
import styled , { css } from 'styled-components' ;
2
2
import Image from 'next/image' ;
3
- import BlogPostsContainer from '@/components/blog/BlogPostsContainer' ;
4
3
import * as m from '@/styles/_mixins' ;
5
4
import {
6
5
$white ,
Original file line number Diff line number Diff line change 1
1
import S from './styles' ;
2
2
3
- export function Row ( { customClass, children, styles } ) {
4
- return < S . Row style = { styles } > { children } </ S . Row > ;
3
+ export function Row ( { customClass, children } ) {
4
+ return < S . Row > { children } </ S . Row > ;
5
5
}
6
6
7
- export function RowAlignLeft ( { customClass, children, styles } ) {
8
- return < S . RowAlignLeft style = { styles } > { children } </ S . RowAlignLeft > ;
7
+ export function RowAlignLeft ( { customClass, children } ) {
8
+ return < S . RowAlignLeft > { children } </ S . RowAlignLeft > ;
9
9
}
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export default function TwoColumn({
12
12
color,
13
13
bgColor,
14
14
link,
15
- customInnerClass,
16
15
customBtnClass,
17
16
$btnColorScheme,
18
17
linkText = 'Learn more' ,
Original file line number Diff line number Diff line change 1
1
import styled , { css } from 'styled-components' ;
2
- import Image from 'next/image' ;
3
2
import Container from '@/components/containers/Container' ;
4
3
import * as m from '@/styles/_mixins' ;
5
4
import { $white , $darkBgColor } from '@/styles/_variables' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import * as m from '@/styles/_mixins';
4
4
import {
5
5
$white ,
6
6
$error ,
7
- $transparent ,
8
7
$darkBgColor ,
9
8
$primaryAccentColor ,
10
9
$primaryContentColor ,
You can’t perform that action at this time.
0 commit comments