diff --git a/src/components/ContentPage/index.tsx b/src/components/ContentPage/index.tsx deleted file mode 100644 index 6a3425e..0000000 --- a/src/components/ContentPage/index.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import React from "react" -import * as SC from "./styles" - -export const ContentPage: React.FC = ({ children, ...restProps }) => { - return ( - {children} - ) -} diff --git a/src/components/ContentPage/styles.tsx b/src/components/ContentPage/styles.tsx deleted file mode 100644 index 54df31f..0000000 --- a/src/components/ContentPage/styles.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import styled from "styled-components" - -export const ContentPageWrapper = styled.div` - width: calc(100% - 305px); - margin-right: 305px; - - @media screen and (max-width: 1200px) { - width: 100%; - margin: 0; - } -` diff --git a/src/components/ResourcesSidebarSection/index.tsx b/src/components/ResourcesSidebarSection/index.tsx deleted file mode 100644 index 177c8c8..0000000 --- a/src/components/ResourcesSidebarSection/index.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React, { FC } from "react" -import * as SC from "./styles" - -export interface IResourcesSidebarSectionProps { - readonly title: string -} - -export const ResourcesSidebarSection: FC = ({ - title, - children, -}) => { - return ( -
- {title} - {children} -
- ) -} diff --git a/src/components/ResourcesSidebarSection/styles.tsx b/src/components/ResourcesSidebarSection/styles.tsx deleted file mode 100644 index 398a8fd..0000000 --- a/src/components/ResourcesSidebarSection/styles.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import styled from "styled-components" - -export const SidebarTitle = styled.h3` - text-transform: uppercase; -` diff --git a/src/components/Waves/index.tsx b/src/components/Waves/index.tsx index 171fef0..e830034 100644 --- a/src/components/Waves/index.tsx +++ b/src/components/Waves/index.tsx @@ -5,10 +5,6 @@ export const WavesTop: FC = props => { return } -export const WavesTopTwo: FC = props => { - return -} - export const WavesBottom: FC = props => { return } diff --git a/src/components/Waves/styles.tsx b/src/components/Waves/styles.tsx index 366649b..7fdc515 100644 --- a/src/components/Waves/styles.tsx +++ b/src/components/Waves/styles.tsx @@ -1,7 +1,6 @@ import styled, { css } from "styled-components" import WavesBottom from "../../images/waves-bot.svg" import WavesTop from "../../images/waves-top.svg" -import WavesTopTwo from "../../images/waves-top2.svg" const waves = css` display: block; @@ -18,12 +17,6 @@ export const StyledWavesTop = styled(WavesTop)` height: 87vh; ` -export const StyledWavesTopTwo = styled(WavesTopTwo)` - ${waves}; - top: 0; - height: 87vh; -` - export const StyledWavesBottom = styled(WavesBottom)` ${waves}; bottom: 0; diff --git a/src/images/waves-top2.svg b/src/images/waves-top2.svg deleted file mode 100644 index 3298a47..0000000 --- a/src/images/waves-top2.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file