aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/landing.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/pages/landing.tsx')
-rw-r--r--packages/website/ts/@next/pages/landing.tsx7
1 files changed, 2 insertions, 5 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx
index 6788e08be..8696cf022 100644
--- a/packages/website/ts/@next/pages/landing.tsx
+++ b/packages/website/ts/@next/pages/landing.tsx
@@ -1,5 +1,4 @@
import * as React from 'react';
-import styled from 'styled-components';
import {SiteWrap} from 'ts/@next/components/siteWrap';
import {SectionLandingAbout} from 'ts/@next/components/sections/landing/about';
@@ -9,8 +8,6 @@ import {SectionLandingHero} from 'ts/@next/components/sections/landing/hero';
import { ModalContact } from 'ts/@next/components/modals/modal_contact';
-import LogoOutlined from 'ts/@next/icons/illustrations/logo-outlined.svg';
-
interface Props {
theme: {
bgColor: string;
@@ -35,11 +32,11 @@ export class NextLanding extends React.Component<Props> {
);
}
- private _onOpenContactModal = (): void => {
+ public _onOpenContactModal = (): void => {
this.setState({ isContactModalOpen: true });
}
- private _onDismissContactModal = (): void => {
+ public _onDismissContactModal = (): void => {
this.setState({ isContactModalOpen: false });
}
}