Skip to content

Commit 180e0cf

Browse files
committed
Created experimental folder and added components
1 parent 3984a09 commit 180e0cf

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

src/layouts/FooterExtended/FooterExtended.components.tsx renamed to src/experimental/containers/Footer/Footer.components.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import styled, { createGlobalStyle } from 'styled-components';
22
import React, { useState } from 'react';
3-
import theme from '../../styles/extended/theme';
4-
import Button from '../../components/Button/Button';
5-
import { ComicSansProps } from './FooterExtended.types';
3+
import theme from '../../styles/theme';
4+
import Button from '../../../components/Button/Button';
5+
import { ComicSansProps } from './Footer.types';
66

77
const { mediaQueryMin } = theme;
88
const container = theme.containerWidth;

src/layouts/FooterExtended/FooterExtended.tsx renamed to src/experimental/containers/Footer/Footer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
2-
import AllSocials from '../../lib/Socials/Socials';
3-
import { Subtitle } from '../../components/Typography/Typography';
2+
import AllSocials from '../../../lib/Socials/Socials';
3+
import { Subtitle } from '../../../components/Typography/Typography';
44
import {
55
FooterContainer,
66
ComicSans,
@@ -12,9 +12,9 @@ import {
1212
FooterLinkContainer,
1313
FooterLogo,
1414
FooterSpacer,
15-
} from './FooterExtended.components';
15+
} from './Footer.components';
1616

17-
const logo = require('../../images/img/logo.svg');
17+
const logo = require('../../../images/img/logo.svg');
1818

1919
const Footer: React.FC<Record<string, never>> = () => (
2020
<footer>
File renamed without changes.

src/layouts/StartupPageLayout/StartupPageLayout.components.tsx renamed to src/experimental/layouts/StartupPageLayout/StartupPageLayout.components.tsx

File renamed without changes.

src/layouts/StartupPageLayout/StartupPageLayout.tsx renamed to src/experimental/layouts/StartupPageLayout/StartupPageLayout.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import React, { useEffect, useState } from 'react';
2-
import SEO from '../SEO/SEO';
3-
import Navbar from '../../containers/Navbar/Navbar';
4-
import Footer from '../FooterExtended/FooterExtended';
2+
import SEO from '../../../layouts/SEO/SEO';
3+
import Navbar from '../../../containers/Navbar/Navbar';
4+
import Footer from '../../containers/Footer/Footer';
55
import {
66
GlobalStyles,
77
TypographyClassStyling,
8-
} from '../../styles/extended/global-css';
9-
import HeadScripts from '../../lib/GetHeadScripts';
10-
import NewsletterSubscribe from '../../containers/NewsletterSubscribe/NewsletterSubscribe';
8+
} from '../../styles/global-css';
9+
import HeadScripts from '../../../lib/GetHeadScripts';
10+
import NewsletterSubscribe from '../../../containers/NewsletterSubscribe/NewsletterSubscribe';
1111
import { Main, HeadElements } from './StartupPageLayout.components';
1212
import StartupPageLayoutProps from './StartupPageLayout.types';
1313

src/layouts/StartupPageLayout/StartupPageLayout.types.ts renamed to src/experimental/layouts/StartupPageLayout/StartupPageLayout.types.ts

File renamed without changes.

src/pages/startups.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import React, { useState } from 'react';
22
import styled from 'styled-components';
3-
import Layout from '../layouts/StartupPageLayout/StartupPageLayout';
3+
import Layout from '../experimental/layouts/StartupPageLayout/StartupPageLayout';
44
import { Subtitle } from '../components/Typography/Typography';
55
import InputField from '../components/InputField';
66
import Button from '../components/Button/Button';
77
import { Container, Row, Col } from '../lib/Grid';
8-
import theme from '../styles/extended/theme';
8+
import theme from '../experimental/styles/theme';
99

1010
const { size, height, spacing, font, weight, color, border } = theme.typography.button;
1111
const { mediaQueryMin, colors } = theme;

0 commit comments

Comments
 (0)