From 7e27143a907e6ad1ee2b431d02aa5409ed58206e Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 8 May 2024 21:23:03 +0100 Subject: [PATCH] Rename v1 to web-check-live --- src/pages/check/[...target].astro | 4 +- .../views => web-check-live}/App.tsx | 8 +- .../assets/data/map-features.json | 0 .../components/Form/Button.tsx | 4 +- .../components/Form/Card.tsx | 6 +- .../components/Form/Heading.tsx | 4 +- .../components/Form/Input.tsx | 4 +- .../components/Form/Modal.tsx | 4 +- .../components/Form/Nav.tsx | 6 +- .../components/Form/Row.tsx | 4 +- .../components/Results/Archives.tsx | 6 +- .../components/Results/BlockLists.tsx | 4 +- .../components/Results/BuiltWith.tsx | 8 +- .../components/Results/CarbonFootprint.tsx | 6 +- .../components/Results/ContentLinks.tsx | 8 +- .../components/Results/Cookies.tsx | 6 +- .../components/Results/DnsRecords.tsx | 4 +- .../components/Results/DnsSec.tsx | 8 +- .../components/Results/DnsServer.tsx | 8 +- .../components/Results/DomainLookup.tsx | 6 +- .../components/Results/Firewall.tsx | 4 +- .../components/Results/Headers.tsx | 4 +- .../components/Results/HostNames.tsx | 8 +- .../components/Results/Hsts.tsx | 4 +- .../components/Results/HttpSecurity.tsx | 4 +- .../components/Results/Lighthouse.tsx | 4 +- .../components/Results/MailConfig.tsx | 8 +- .../components/Results/OpenPorts.tsx | 4 +- .../components/Results/Rank.tsx | 6 +- .../components/Results/Redirects.tsx | 6 +- .../components/Results/RobotsTxt.tsx | 4 +- .../components/Results/Screenshot.tsx | 2 +- .../components/Results/SecurityTxt.tsx | 6 +- .../components/Results/ServerInfo.tsx | 6 +- .../components/Results/ServerLocation.tsx | 12 +- .../components/Results/ServerStatus.tsx | 6 +- .../components/Results/SiteFeatures.tsx | 8 +- .../components/Results/Sitemap.tsx | 6 +- .../components/Results/SocialTags.tsx | 6 +- .../components/Results/SslCert.tsx | 6 +- .../components/Results/TechStack.tsx | 6 +- .../components/Results/Threats.tsx | 6 +- .../components/Results/TlsCipherSuites.tsx | 6 +- .../components/Results/TlsClientSupport.tsx | 6 +- .../components/Results/TlsIssueAnalysis.tsx | 8 +- .../components/Results/TraceRoute.tsx | 4 +- .../components/Results/TxtRecords.tsx | 4 +- .../components/Results/WhoIs.tsx | 8 +- .../components/misc/ActionButtons.tsx | 4 +- .../components/misc/AdditionalResources.tsx | 4 +- .../components/misc/DocContent.tsx | 6 +- .../components/misc/ErrorBoundary.tsx | 6 +- .../components/misc/FancyBackground.tsx | 0 .../components/misc/Flag.tsx | 0 .../components/misc/Footer.tsx | 2 +- .../components/misc/Loader.tsx | 6 +- .../components/misc/LocationMap.tsx | 4 +- .../components/misc/ProgressBar.tsx | 6 +- .../components/misc/SelfScanMsg.tsx | 4 +- .../components/misc/ViewRaw.tsx | 6 +- .../hooks/motherOfAllHooks.ts | 4 +- .../views => web-check-live}/main.tsx | 0 .../styles/colors.ts | 0 .../styles/dimensions.ts | 0 .../styles/globals.tsx | 0 .../styles/index.css | 0 .../styles/typography.ts | 0 .../typings/file-types.d.ts | 0 .../typings/react-simple-maps.d.ts | 0 .../utils/address-type-checker.ts | 0 .../utils/docs.ts | 0 .../utils/get-keys.ts | 0 .../utils/result-processor.ts | 2 +- .../views/About.tsx | 16 +-- .../views/Home.tsx | 18 +-- .../views/NotFound.tsx | 12 +- .../views/Results.tsx | 110 +++++++++--------- 77 files changed, 240 insertions(+), 240 deletions(-) rename src/{v1-check/views => web-check-live}/App.tsx (69%) rename src/{v1-check => web-check-live}/assets/data/map-features.json (100%) rename src/{v1-check => web-check-live}/components/Form/Button.tsx (94%) rename src/{v1-check => web-check-live}/components/Form/Card.tsx (84%) rename src/{v1-check => web-check-live}/components/Form/Heading.tsx (94%) rename src/{v1-check => web-check-live}/components/Form/Input.tsx (93%) rename src/{v1-check => web-check-live}/components/Form/Modal.tsx (94%) rename src/{v1-check => web-check-live}/components/Form/Nav.tsx (77%) rename src/{v1-check => web-check-live}/components/Form/Row.tsx (97%) rename src/{v1-check => web-check-live}/components/Results/Archives.tsx (87%) rename src/{v1-check => web-check-live}/components/Results/BlockLists.tsx (83%) rename src/{v1-check => web-check-live}/components/Results/BuiltWith.tsx (85%) rename src/{v1-check => web-check-live}/components/Results/CarbonFootprint.tsx (91%) rename src/{v1-check => web-check-live}/components/Results/ContentLinks.tsx (89%) rename src/{v1-check => web-check-live}/components/Results/Cookies.tsx (90%) rename src/{v1-check => web-check-live}/components/Results/DnsRecords.tsx (89%) rename src/{v1-check => web-check-live}/components/Results/DnsSec.tsx (96%) rename src/{v1-check => web-check-live}/components/Results/DnsServer.tsx (85%) rename src/{v1-check => web-check-live}/components/Results/DomainLookup.tsx (88%) rename src/{v1-check => web-check-live}/components/Results/Firewall.tsx (85%) rename src/{v1-check => web-check-live}/components/Results/Headers.tsx (82%) rename src/{v1-check => web-check-live}/components/Results/HostNames.tsx (83%) rename src/{v1-check => web-check-live}/components/Results/Hsts.tsx (90%) rename src/{v1-check => web-check-live}/components/Results/HttpSecurity.tsx (86%) rename src/{v1-check => web-check-live}/components/Results/Lighthouse.tsx (91%) rename src/{v1-check => web-check-live}/components/Results/MailConfig.tsx (88%) rename src/{v1-check => web-check-live}/components/Results/OpenPorts.tsx (84%) rename src/{v1-check => web-check-live}/components/Results/Rank.tsx (93%) rename src/{v1-check => web-check-live}/components/Results/Redirects.tsx (86%) rename src/{v1-check => web-check-live}/components/Results/RobotsTxt.tsx (84%) rename src/{v1-check => web-check-live}/components/Results/Screenshot.tsx (92%) rename src/{v1-check => web-check-live}/components/Results/SecurityTxt.tsx (91%) rename src/{v1-check => web-check-live}/components/Results/ServerInfo.tsx (80%) rename src/{v1-check => web-check-live}/components/Results/ServerLocation.tsx (78%) rename src/{v1-check => web-check-live}/components/Results/ServerStatus.tsx (82%) rename src/{v1-check => web-check-live}/components/Results/SiteFeatures.tsx (88%) rename src/{v1-check => web-check-live}/components/Results/Sitemap.tsx (90%) rename src/{v1-check => web-check-live}/components/Results/SocialTags.tsx (90%) rename src/{v1-check => web-check-live}/components/Results/SslCert.tsx (95%) rename src/{v1-check => web-check-live}/components/Results/TechStack.tsx (93%) rename src/{v1-check => web-check-live}/components/Results/Threats.tsx (94%) rename src/{v1-check => web-check-live}/components/Results/TlsCipherSuites.tsx (92%) rename src/{v1-check => web-check-live}/components/Results/TlsClientSupport.tsx (93%) rename src/{v1-check => web-check-live}/components/Results/TlsIssueAnalysis.tsx (95%) rename src/{v1-check => web-check-live}/components/Results/TraceRoute.tsx (93%) rename src/{v1-check => web-check-live}/components/Results/TxtRecords.tsx (85%) rename src/{v1-check => web-check-live}/components/Results/WhoIs.tsx (88%) rename src/{v1-check => web-check-live}/components/misc/ActionButtons.tsx (91%) rename src/{v1-check => web-check-live}/components/misc/AdditionalResources.tsx (98%) rename src/{v1-check => web-check-live}/components/misc/DocContent.tsx (90%) rename src/{v1-check => web-check-live}/components/misc/ErrorBoundary.tsx (90%) rename src/{v1-check => web-check-live}/components/misc/FancyBackground.tsx (100%) rename src/{v1-check => web-check-live}/components/misc/Flag.tsx (100%) rename src/{v1-check => web-check-live}/components/misc/Footer.tsx (96%) rename src/{v1-check => web-check-live}/components/misc/Loader.tsx (93%) rename src/{v1-check => web-check-live}/components/misc/LocationMap.tsx (90%) rename src/{v1-check => web-check-live}/components/misc/ProgressBar.tsx (98%) rename src/{v1-check => web-check-live}/components/misc/SelfScanMsg.tsx (93%) rename src/{v1-check => web-check-live}/components/misc/ViewRaw.tsx (94%) rename src/{v1-check => web-check-live}/hooks/motherOfAllHooks.ts (96%) rename src/{v1-check/views => web-check-live}/main.tsx (100%) rename src/{v1-check => web-check-live}/styles/colors.ts (100%) rename src/{v1-check => web-check-live}/styles/dimensions.ts (100%) rename src/{v1-check => web-check-live}/styles/globals.tsx (100%) rename src/{v1-check => web-check-live}/styles/index.css (100%) rename src/{v1-check => web-check-live}/styles/typography.ts (100%) rename src/{v1-check => web-check-live}/typings/file-types.d.ts (100%) rename src/{v1-check => web-check-live}/typings/react-simple-maps.d.ts (100%) rename src/{v1-check => web-check-live}/utils/address-type-checker.ts (100%) rename src/{v1-check => web-check-live}/utils/docs.ts (100%) rename src/{v1-check => web-check-live}/utils/get-keys.ts (100%) rename src/{v1-check => web-check-live}/utils/result-processor.ts (98%) rename src/{v1-check => web-check-live}/views/About.tsx (96%) rename src/{v1-check => web-check-live}/views/Home.tsx (93%) rename src/{v1-check => web-check-live}/views/NotFound.tsx (78%) rename src/{v1-check => web-check-live}/views/Results.tsx (88%) diff --git a/src/pages/check/[...target].astro b/src/pages/check/[...target].astro index 31d8ff4..cc920ce 100644 --- a/src/pages/check/[...target].astro +++ b/src/pages/check/[...target].astro @@ -1,6 +1,6 @@ --- -import Main from "../../v1-check/views/main.tsx" -import '../../v1-check/styles/index.css'; +import Main from '../../web-check-live/main.tsx'; +import '../../web-check-live/styles/index.css'; export const prerender = false; diff --git a/src/v1-check/views/App.tsx b/src/web-check-live/App.tsx similarity index 69% rename from src/v1-check/views/App.tsx rename to src/web-check-live/App.tsx index 380da01..a4d58f2 100644 --- a/src/v1-check/views/App.tsx +++ b/src/web-check-live/App.tsx @@ -1,9 +1,9 @@ import { Routes, Route, Outlet } from "react-router-dom"; -import Home from 'v1-check/views/Home.tsx'; -import Results from 'v1-check/views/Results.tsx'; -import About from 'v1-check/views/About.tsx'; -import NotFound from 'v1-check/views/NotFound.tsx'; +import Home from 'web-check-live/views/Home.tsx'; +import Results from 'web-check-live/views/Results.tsx'; +import About from 'web-check-live/views/About.tsx'; +import NotFound from 'web-check-live/views/NotFound.tsx'; export default function App() { return ( diff --git a/src/v1-check/assets/data/map-features.json b/src/web-check-live/assets/data/map-features.json similarity index 100% rename from src/v1-check/assets/data/map-features.json rename to src/web-check-live/assets/data/map-features.json diff --git a/src/v1-check/components/Form/Button.tsx b/src/web-check-live/components/Form/Button.tsx similarity index 94% rename from src/v1-check/components/Form/Button.tsx rename to src/web-check-live/components/Form/Button.tsx index 2b26279..37295d6 100644 --- a/src/v1-check/components/Form/Button.tsx +++ b/src/web-check-live/components/Form/Button.tsx @@ -2,8 +2,8 @@ import { type ReactNode, type MouseEventHandler } from 'react'; import styled from '@emotion/styled'; import { keyframes } from '@emotion/react'; -import colors from 'v1-check/styles/colors'; -import { type InputSize, applySize } from 'v1-check/styles/dimensions'; +import colors from 'web-check-live/styles/colors'; +import { type InputSize, applySize } from 'web-check-live/styles/dimensions'; type LoadState = 'loading' | 'success' | 'error'; diff --git a/src/v1-check/components/Form/Card.tsx b/src/web-check-live/components/Form/Card.tsx similarity index 84% rename from src/v1-check/components/Form/Card.tsx rename to src/web-check-live/components/Form/Card.tsx index 4f41973..5f1c5b5 100644 --- a/src/v1-check/components/Form/Card.tsx +++ b/src/web-check-live/components/Form/Card.tsx @@ -1,9 +1,9 @@ import styled from '@emotion/styled'; import { type ReactNode } from 'react'; -import ErrorBoundary from 'v1-check/components/misc/ErrorBoundary'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import ErrorBoundary from 'web-check-live/components/misc/ErrorBoundary'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; export const StyledCard = styled.section<{ styles?: string}>` background: ${colors.backgroundLighter}; diff --git a/src/v1-check/components/Form/Heading.tsx b/src/web-check-live/components/Form/Heading.tsx similarity index 94% rename from src/v1-check/components/Form/Heading.tsx rename to src/web-check-live/components/Form/Heading.tsx index ff15617..2e95952 100644 --- a/src/v1-check/components/Form/Heading.tsx +++ b/src/web-check-live/components/Form/Heading.tsx @@ -1,6 +1,6 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { TextSizes } from 'v1-check/styles/typography'; +import colors from 'web-check-live/styles/colors'; +import { TextSizes } from 'web-check-live/styles/typography'; import type { ReactNode } from 'react'; interface HeadingProps { diff --git a/src/v1-check/components/Form/Input.tsx b/src/web-check-live/components/Form/Input.tsx similarity index 93% rename from src/v1-check/components/Form/Input.tsx rename to src/web-check-live/components/Form/Input.tsx index fb90719..a389716 100644 --- a/src/v1-check/components/Form/Input.tsx +++ b/src/web-check-live/components/Form/Input.tsx @@ -1,7 +1,7 @@ import { type InputHTMLAttributes } from 'react'; import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { type InputSize, applySize } from 'v1-check/styles/dimensions'; +import colors from 'web-check-live/styles/colors'; +import { type InputSize, applySize } from 'web-check-live/styles/dimensions'; type Orientation = 'horizontal' | 'vertical'; diff --git a/src/v1-check/components/Form/Modal.tsx b/src/web-check-live/components/Form/Modal.tsx similarity index 94% rename from src/v1-check/components/Form/Modal.tsx rename to src/web-check-live/components/Form/Modal.tsx index 2e967ef..45635d5 100644 --- a/src/v1-check/components/Form/Modal.tsx +++ b/src/web-check-live/components/Form/Modal.tsx @@ -2,8 +2,8 @@ import React from 'react'; import type { ReactNode } from 'react'; import ReactDOM from 'react-dom'; import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import Button from 'v1-check/components/Form/Button'; +import colors from 'web-check-live/styles/colors'; +import Button from 'web-check-live/components/Form/Button'; interface ModalProps { children: ReactNode; diff --git a/src/v1-check/components/Form/Nav.tsx b/src/web-check-live/components/Form/Nav.tsx similarity index 77% rename from src/v1-check/components/Form/Nav.tsx rename to src/web-check-live/components/Form/Nav.tsx index 76edc7b..7987d58 100644 --- a/src/v1-check/components/Form/Nav.tsx +++ b/src/web-check-live/components/Form/Nav.tsx @@ -1,9 +1,9 @@ import styled from '@emotion/styled'; import type { ReactNode } from 'react'; -import { StyledCard } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import { StyledCard } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; const Header = styled(StyledCard)` margin: 1rem auto; diff --git a/src/v1-check/components/Form/Row.tsx b/src/web-check-live/components/Form/Row.tsx similarity index 97% rename from src/v1-check/components/Form/Row.tsx rename to src/web-check-live/components/Form/Row.tsx index 79ad91a..7a66b7b 100644 --- a/src/v1-check/components/Form/Row.tsx +++ b/src/web-check-live/components/Form/Row.tsx @@ -1,7 +1,7 @@ import type { ReactNode } from 'react'; import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import Heading from 'v1-check/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; +import Heading from 'web-check-live/components/Form/Heading'; export interface RowProps { lbl: string, diff --git a/src/v1-check/components/Results/Archives.tsx b/src/web-check-live/components/Results/Archives.tsx similarity index 87% rename from src/v1-check/components/Results/Archives.tsx rename to src/web-check-live/components/Results/Archives.tsx index df6e305..da9b779 100644 --- a/src/v1-check/components/Results/Archives.tsx +++ b/src/web-check-live/components/Results/Archives.tsx @@ -1,7 +1,7 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const Note = styled.small` opacity: 0.5; diff --git a/src/v1-check/components/Results/BlockLists.tsx b/src/web-check-live/components/Results/BlockLists.tsx similarity index 83% rename from src/v1-check/components/Results/BlockLists.tsx rename to src/web-check-live/components/Results/BlockLists.tsx index 8a36408..9300f7d 100644 --- a/src/v1-check/components/Results/BlockLists.tsx +++ b/src/web-check-live/components/Results/BlockLists.tsx @@ -1,6 +1,6 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const BlockListsCard = (props: {data: any, title: string, actionButtons: any }): JSX.Element => { const blockLists = props.data.blocklists; diff --git a/src/v1-check/components/Results/BuiltWith.tsx b/src/web-check-live/components/Results/BuiltWith.tsx similarity index 85% rename from src/v1-check/components/Results/BuiltWith.tsx rename to src/web-check-live/components/Results/BuiltWith.tsx index 2c0afb8..42c31e7 100644 --- a/src/v1-check/components/Results/BuiltWith.tsx +++ b/src/web-check-live/components/Results/BuiltWith.tsx @@ -1,9 +1,9 @@ import styled from '@emotion/styled'; -import type { TechnologyGroup, Technology } from 'v1-check/utils/result-processor'; -import colors from 'v1-check/styles/colors'; -import Card from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; +import type { TechnologyGroup, Technology } from 'web-check-live/utils/result-processor'; +import colors from 'web-check-live/styles/colors'; +import Card from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; const Outer = styled(Card)` grid-row: span 2 diff --git a/src/v1-check/components/Results/CarbonFootprint.tsx b/src/web-check-live/components/Results/CarbonFootprint.tsx similarity index 91% rename from src/v1-check/components/Results/CarbonFootprint.tsx rename to src/web-check-live/components/Results/CarbonFootprint.tsx index a4c1347..fe7b2e7 100644 --- a/src/v1-check/components/Results/CarbonFootprint.tsx +++ b/src/web-check-live/components/Results/CarbonFootprint.tsx @@ -1,8 +1,8 @@ import { useEffect, useState } from 'react'; import styled from '@emotion/styled'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; const LearnMoreInfo = styled.p` font-size: 0.8rem; diff --git a/src/v1-check/components/Results/ContentLinks.tsx b/src/web-check-live/components/Results/ContentLinks.tsx similarity index 89% rename from src/v1-check/components/Results/ContentLinks.tsx rename to src/web-check-live/components/Results/ContentLinks.tsx index d5c3dc7..25ffe7c 100644 --- a/src/v1-check/components/Results/ContentLinks.tsx +++ b/src/web-check-live/components/Results/ContentLinks.tsx @@ -1,7 +1,7 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ` small { margin-top: 1rem; opacity: 0.5; } diff --git a/src/v1-check/components/Results/Cookies.tsx b/src/web-check-live/components/Results/Cookies.tsx similarity index 90% rename from src/v1-check/components/Results/Cookies.tsx rename to src/web-check-live/components/Results/Cookies.tsx index ce879a1..ee983b3 100644 --- a/src/v1-check/components/Results/Cookies.tsx +++ b/src/web-check-live/components/Results/Cookies.tsx @@ -1,6 +1,6 @@ -import { Card } from 'v1-check/components/Form/Card'; -import { ExpandableRow } from 'v1-check/components/Form/Row'; -import type { Cookie } from 'v1-check/utils/result-processor'; +import { Card } from 'web-check-live/components/Form/Card'; +import { ExpandableRow } from 'web-check-live/components/Form/Row'; +import type { Cookie } from 'web-check-live/utils/result-processor'; export const parseHeaderCookies = (cookiesHeader: string[]): Cookie[] => { if (!cookiesHeader || !cookiesHeader.length) return []; diff --git a/src/v1-check/components/Results/DnsRecords.tsx b/src/web-check-live/components/Results/DnsRecords.tsx similarity index 89% rename from src/v1-check/components/Results/DnsRecords.tsx rename to src/web-check-live/components/Results/DnsRecords.tsx index 8280f4b..67bb965 100644 --- a/src/v1-check/components/Results/DnsRecords.tsx +++ b/src/web-check-live/components/Results/DnsRecords.tsx @@ -1,5 +1,5 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row, { ListRow } from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { ListRow } from 'web-check-live/components/Form/Row'; const styles = ` grid-row: span 2; diff --git a/src/v1-check/components/Results/DnsSec.tsx b/src/web-check-live/components/Results/DnsSec.tsx similarity index 96% rename from src/v1-check/components/Results/DnsSec.tsx rename to src/web-check-live/components/Results/DnsSec.tsx index 337b326..12008b2 100644 --- a/src/v1-check/components/Results/DnsSec.tsx +++ b/src/web-check-live/components/Results/DnsSec.tsx @@ -1,7 +1,7 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row, { ExpandableRow, type RowProps } from 'v1-check/components/Form/Row'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { ExpandableRow, type RowProps } from 'web-check-live/components/Form/Row'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; diff --git a/src/v1-check/components/Results/DnsServer.tsx b/src/web-check-live/components/Results/DnsServer.tsx similarity index 85% rename from src/v1-check/components/Results/DnsServer.tsx rename to src/web-check-live/components/Results/DnsServer.tsx index c69c844..79e6f51 100644 --- a/src/v1-check/components/Results/DnsServer.tsx +++ b/src/web-check-live/components/Results/DnsServer.tsx @@ -1,8 +1,8 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; -import Row from 'v1-check/components/Form/Row'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; +import Row from 'web-check-live/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ` small { diff --git a/src/v1-check/components/Results/DomainLookup.tsx b/src/web-check-live/components/Results/DomainLookup.tsx similarity index 88% rename from src/v1-check/components/Results/DomainLookup.tsx rename to src/web-check-live/components/Results/DomainLookup.tsx index 511ad90..bd1edb5 100644 --- a/src/v1-check/components/Results/DomainLookup.tsx +++ b/src/web-check-live/components/Results/DomainLookup.tsx @@ -1,7 +1,7 @@ -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` span.val { diff --git a/src/v1-check/components/Results/Firewall.tsx b/src/web-check-live/components/Results/Firewall.tsx similarity index 85% rename from src/v1-check/components/Results/Firewall.tsx rename to src/web-check-live/components/Results/Firewall.tsx index 94b085a..fd22443 100644 --- a/src/v1-check/components/Results/Firewall.tsx +++ b/src/web-check-live/components/Results/Firewall.tsx @@ -1,6 +1,6 @@ import styled from '@emotion/styled'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const Note = styled.small` opacity: 0.5; diff --git a/src/v1-check/components/Results/Headers.tsx b/src/web-check-live/components/Results/Headers.tsx similarity index 82% rename from src/v1-check/components/Results/Headers.tsx rename to src/web-check-live/components/Results/Headers.tsx index 0b2d289..6447025 100644 --- a/src/v1-check/components/Results/Headers.tsx +++ b/src/web-check-live/components/Results/Headers.tsx @@ -1,5 +1,5 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; import type { ReactNode } from 'react'; const HeadersCard = (props: { data: any, title: string, actionButtons: ReactNode }): JSX.Element => { diff --git a/src/v1-check/components/Results/HostNames.tsx b/src/web-check-live/components/Results/HostNames.tsx similarity index 83% rename from src/v1-check/components/Results/HostNames.tsx rename to src/web-check-live/components/Results/HostNames.tsx index f24435e..649bedf 100644 --- a/src/v1-check/components/Results/HostNames.tsx +++ b/src/web-check-live/components/Results/HostNames.tsx @@ -1,9 +1,9 @@ import styled from '@emotion/styled'; -import type { HostNames } from 'v1-check/utils/result-processor'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; +import type { HostNames } from 'web-check-live/utils/result-processor'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; const Row = styled.div` display: flex; diff --git a/src/v1-check/components/Results/Hsts.tsx b/src/web-check-live/components/Results/Hsts.tsx similarity index 90% rename from src/v1-check/components/Results/Hsts.tsx rename to src/web-check-live/components/Results/Hsts.tsx index 7060dfa..2ba29cb 100644 --- a/src/v1-check/components/Results/Hsts.tsx +++ b/src/web-check-live/components/Results/Hsts.tsx @@ -1,6 +1,6 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row, { type RowProps } from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { type RowProps } from 'web-check-live/components/Form/Row'; const cardStyles = ''; diff --git a/src/v1-check/components/Results/HttpSecurity.tsx b/src/web-check-live/components/Results/HttpSecurity.tsx similarity index 86% rename from src/v1-check/components/Results/HttpSecurity.tsx rename to src/web-check-live/components/Results/HttpSecurity.tsx index 6c4021d..ff4d75a 100644 --- a/src/v1-check/components/Results/HttpSecurity.tsx +++ b/src/web-check-live/components/Results/HttpSecurity.tsx @@ -1,5 +1,5 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const HttpSecurityCard = (props: { data: any, title: string, actionButtons: any }): JSX.Element => { const data = props.data; diff --git a/src/v1-check/components/Results/Lighthouse.tsx b/src/web-check-live/components/Results/Lighthouse.tsx similarity index 91% rename from src/v1-check/components/Results/Lighthouse.tsx rename to src/web-check-live/components/Results/Lighthouse.tsx index d44500c..e161675 100644 --- a/src/v1-check/components/Results/Lighthouse.tsx +++ b/src/web-check-live/components/Results/Lighthouse.tsx @@ -1,5 +1,5 @@ -import { Card } from 'v1-check/components/Form/Card'; -import { ExpandableRow } from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import { ExpandableRow } from 'web-check-live/components/Form/Row'; const processScore = (percentile: number) => { return `${Math.round(percentile * 100)}%`; diff --git a/src/v1-check/components/Results/MailConfig.tsx b/src/web-check-live/components/Results/MailConfig.tsx similarity index 88% rename from src/v1-check/components/Results/MailConfig.tsx rename to src/web-check-live/components/Results/MailConfig.tsx index fccf370..d4f21a8 100644 --- a/src/v1-check/components/Results/MailConfig.tsx +++ b/src/web-check-live/components/Results/MailConfig.tsx @@ -1,8 +1,8 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ``; diff --git a/src/v1-check/components/Results/OpenPorts.tsx b/src/web-check-live/components/Results/OpenPorts.tsx similarity index 84% rename from src/v1-check/components/Results/OpenPorts.tsx rename to src/web-check-live/components/Results/OpenPorts.tsx index f404f42..872e6e8 100644 --- a/src/v1-check/components/Results/OpenPorts.tsx +++ b/src/web-check-live/components/Results/OpenPorts.tsx @@ -1,5 +1,5 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` small { margin-top: 1rem; opacity: 0.5; } diff --git a/src/v1-check/components/Results/Rank.tsx b/src/web-check-live/components/Results/Rank.tsx similarity index 93% rename from src/v1-check/components/Results/Rank.tsx rename to src/web-check-live/components/Results/Rank.tsx index d38377f..97a089d 100644 --- a/src/v1-check/components/Results/Rank.tsx +++ b/src/web-check-live/components/Results/Rank.tsx @@ -1,8 +1,8 @@ import { AreaChart, Area, Tooltip, CartesianGrid, ResponsiveContainer } from 'recharts'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` span.val { diff --git a/src/v1-check/components/Results/Redirects.tsx b/src/web-check-live/components/Results/Redirects.tsx similarity index 86% rename from src/v1-check/components/Results/Redirects.tsx rename to src/web-check-live/components/Results/Redirects.tsx index 7af5585..5940963 100644 --- a/src/v1-check/components/Results/Redirects.tsx +++ b/src/web-check-live/components/Results/Redirects.tsx @@ -1,6 +1,6 @@ -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` div { diff --git a/src/v1-check/components/Results/RobotsTxt.tsx b/src/web-check-live/components/Results/RobotsTxt.tsx similarity index 84% rename from src/v1-check/components/Results/RobotsTxt.tsx rename to src/web-check-live/components/Results/RobotsTxt.tsx index c0542ff..d7a9511 100644 --- a/src/v1-check/components/Results/RobotsTxt.tsx +++ b/src/web-check-live/components/Results/RobotsTxt.tsx @@ -1,6 +1,6 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row, { type RowProps } from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { type RowProps } from 'web-check-live/components/Form/Row'; const cardStyles = ` grid-row: span 2; diff --git a/src/v1-check/components/Results/Screenshot.tsx b/src/web-check-live/components/Results/Screenshot.tsx similarity index 92% rename from src/v1-check/components/Results/Screenshot.tsx rename to src/web-check-live/components/Results/Screenshot.tsx index 26f0e34..8d8b293 100644 --- a/src/v1-check/components/Results/Screenshot.tsx +++ b/src/web-check-live/components/Results/Screenshot.tsx @@ -1,4 +1,4 @@ -import { Card } from 'v1-check/components/Form/Card'; +import { Card } from 'web-check-live/components/Form/Card'; const cardStyles = ` overflow: auto; diff --git a/src/v1-check/components/Results/SecurityTxt.tsx b/src/web-check-live/components/Results/SecurityTxt.tsx similarity index 91% rename from src/v1-check/components/Results/SecurityTxt.tsx rename to src/web-check-live/components/Results/SecurityTxt.tsx index 67ea14a..1299f7f 100644 --- a/src/v1-check/components/Results/SecurityTxt.tsx +++ b/src/web-check-live/components/Results/SecurityTxt.tsx @@ -1,7 +1,7 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row, { Details } from 'v1-check/components/Form/Row'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { Details } from 'web-check-live/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ` small { diff --git a/src/v1-check/components/Results/ServerInfo.tsx b/src/web-check-live/components/Results/ServerInfo.tsx similarity index 80% rename from src/v1-check/components/Results/ServerInfo.tsx rename to src/web-check-live/components/Results/ServerInfo.tsx index 647bbb0..7f426b1 100644 --- a/src/v1-check/components/Results/ServerInfo.tsx +++ b/src/web-check-live/components/Results/ServerInfo.tsx @@ -1,6 +1,6 @@ -import type { ServerInfo } from 'v1-check/utils/result-processor'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import type { ServerInfo } from 'web-check-live/utils/result-processor'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const ServerInfoCard = (props: { data: ServerInfo, title: string, actionButtons: any }): JSX.Element => { const info = props.data; diff --git a/src/v1-check/components/Results/ServerLocation.tsx b/src/web-check-live/components/Results/ServerLocation.tsx similarity index 78% rename from src/v1-check/components/Results/ServerLocation.tsx rename to src/web-check-live/components/Results/ServerLocation.tsx index 9e04493..a2f44df 100644 --- a/src/v1-check/components/Results/ServerLocation.tsx +++ b/src/web-check-live/components/Results/ServerLocation.tsx @@ -1,11 +1,11 @@ import styled from '@emotion/styled'; -import type { ServerLocation } from 'v1-check/utils/result-processor'; -import { Card } from 'v1-check/components/Form/Card'; -import LocationMap from 'v1-check/components/misc/LocationMap'; -import Flag from 'v1-check/components/misc/Flag'; -import { TextSizes } from 'v1-check/styles/typography'; -import Row, { StyledRow } from 'v1-check/components/Form/Row'; +import type { ServerLocation } from 'web-check-live/utils/result-processor'; +import { Card } from 'web-check-live/components/Form/Card'; +import LocationMap from 'web-check-live/components/misc/LocationMap'; +import Flag from 'web-check-live/components/misc/Flag'; +import { TextSizes } from 'web-check-live/styles/typography'; +import Row, { StyledRow } from 'web-check-live/components/Form/Row'; const cardStyles = ''; diff --git a/src/v1-check/components/Results/ServerStatus.tsx b/src/web-check-live/components/Results/ServerStatus.tsx similarity index 82% rename from src/v1-check/components/Results/ServerStatus.tsx rename to src/web-check-live/components/Results/ServerStatus.tsx index 50775dc..a0ddd5c 100644 --- a/src/v1-check/components/Results/ServerStatus.tsx +++ b/src/web-check-live/components/Results/ServerStatus.tsx @@ -1,7 +1,7 @@ -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` span.val { diff --git a/src/v1-check/components/Results/SiteFeatures.tsx b/src/web-check-live/components/Results/SiteFeatures.tsx similarity index 88% rename from src/v1-check/components/Results/SiteFeatures.tsx rename to src/web-check-live/components/Results/SiteFeatures.tsx index d40af07..639cb70 100644 --- a/src/v1-check/components/Results/SiteFeatures.tsx +++ b/src/web-check-live/components/Results/SiteFeatures.tsx @@ -1,7 +1,7 @@ -import { Card } from 'v1-check/components/Form/Card'; -import colors from 'v1-check/styles/colors'; -import Row from 'v1-check/components/Form/Row'; -import Heading from 'v1-check/components/Form/Heading'; +import { Card } from 'web-check-live/components/Form/Card'; +import colors from 'web-check-live/styles/colors'; +import Row from 'web-check-live/components/Form/Row'; +import Heading from 'web-check-live/components/Form/Heading'; const styles = ` .content { diff --git a/src/v1-check/components/Results/Sitemap.tsx b/src/web-check-live/components/Results/Sitemap.tsx similarity index 90% rename from src/v1-check/components/Results/Sitemap.tsx rename to src/web-check-live/components/Results/Sitemap.tsx index fd35451..c22dbe5 100644 --- a/src/v1-check/components/Results/Sitemap.tsx +++ b/src/web-check-live/components/Results/Sitemap.tsx @@ -1,7 +1,7 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row, { ExpandableRow } from 'v1-check/components/Form/Row'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { ExpandableRow } from 'web-check-live/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ` max-height: 50rem; diff --git a/src/v1-check/components/Results/SocialTags.tsx b/src/web-check-live/components/Results/SocialTags.tsx similarity index 90% rename from src/v1-check/components/Results/SocialTags.tsx rename to src/web-check-live/components/Results/SocialTags.tsx index 2a5c4f8..32fd114 100644 --- a/src/v1-check/components/Results/SocialTags.tsx +++ b/src/web-check-live/components/Results/SocialTags.tsx @@ -1,7 +1,7 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ` .banner-image img { diff --git a/src/v1-check/components/Results/SslCert.tsx b/src/web-check-live/components/Results/SslCert.tsx similarity index 95% rename from src/v1-check/components/Results/SslCert.tsx rename to src/web-check-live/components/Results/SslCert.tsx index 34d45e0..007795a 100644 --- a/src/v1-check/components/Results/SslCert.tsx +++ b/src/web-check-live/components/Results/SslCert.tsx @@ -1,8 +1,8 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; const Row = styled.div` display: flex; diff --git a/src/v1-check/components/Results/TechStack.tsx b/src/web-check-live/components/Results/TechStack.tsx similarity index 93% rename from src/v1-check/components/Results/TechStack.tsx rename to src/web-check-live/components/Results/TechStack.tsx index a734e3f..a49eed6 100644 --- a/src/v1-check/components/Results/TechStack.tsx +++ b/src/web-check-live/components/Results/TechStack.tsx @@ -1,8 +1,8 @@ import styled from '@emotion/styled'; -import { Card } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; const cardStyles = ` grid-row: span 2; diff --git a/src/v1-check/components/Results/Threats.tsx b/src/web-check-live/components/Results/Threats.tsx similarity index 94% rename from src/v1-check/components/Results/Threats.tsx rename to src/web-check-live/components/Results/Threats.tsx index d1b7850..349d75b 100644 --- a/src/v1-check/components/Results/Threats.tsx +++ b/src/web-check-live/components/Results/Threats.tsx @@ -1,8 +1,8 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Row, { ExpandableRow } from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row, { ExpandableRow } from 'web-check-live/components/Form/Row'; const Expandable = styled.details` margin-top: 0.5rem; diff --git a/src/v1-check/components/Results/TlsCipherSuites.tsx b/src/web-check-live/components/Results/TlsCipherSuites.tsx similarity index 92% rename from src/v1-check/components/Results/TlsCipherSuites.tsx rename to src/web-check-live/components/Results/TlsCipherSuites.tsx index f1dad13..2f7de22 100644 --- a/src/v1-check/components/Results/TlsCipherSuites.tsx +++ b/src/web-check-live/components/Results/TlsCipherSuites.tsx @@ -1,8 +1,8 @@ import { useState, useEffect } from 'react'; -import { Card } from 'v1-check/components/Form/Card'; -import Button from 'v1-check/components/Form/Button'; -import { ExpandableRow } from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Button from 'web-check-live/components/Form/Button'; +import { ExpandableRow } from 'web-check-live/components/Form/Row'; const makeCipherSuites = (results: any) => { if (!results || !results.connection_info || (results.connection_info.ciphersuite || [])?.length === 0) { diff --git a/src/v1-check/components/Results/TlsClientSupport.tsx b/src/web-check-live/components/Results/TlsClientSupport.tsx similarity index 93% rename from src/v1-check/components/Results/TlsClientSupport.tsx rename to src/web-check-live/components/Results/TlsClientSupport.tsx index fcfa0a9..65be682 100644 --- a/src/v1-check/components/Results/TlsClientSupport.tsx +++ b/src/web-check-live/components/Results/TlsClientSupport.tsx @@ -1,8 +1,8 @@ import { useState, useEffect } from 'react'; -import { Card } from 'v1-check/components/Form/Card'; -import Button from 'v1-check/components/Form/Button'; -import { ExpandableRow } from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Button from 'web-check-live/components/Form/Button'; +import { ExpandableRow } from 'web-check-live/components/Form/Row'; const makeClientSupport = (results: any) => { if (!results?.analysis) return []; diff --git a/src/v1-check/components/Results/TlsIssueAnalysis.tsx b/src/web-check-live/components/Results/TlsIssueAnalysis.tsx similarity index 95% rename from src/v1-check/components/Results/TlsIssueAnalysis.tsx rename to src/web-check-live/components/Results/TlsIssueAnalysis.tsx index 2030b24..0c589cd 100644 --- a/src/v1-check/components/Results/TlsIssueAnalysis.tsx +++ b/src/web-check-live/components/Results/TlsIssueAnalysis.tsx @@ -1,10 +1,10 @@ import { useState, useEffect } from 'react'; import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Button from 'v1-check/components/Form/Button'; -import Row, { ExpandableRow } from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Button from 'web-check-live/components/Form/Button'; +import Row, { ExpandableRow } from 'web-check-live/components/Form/Row'; const Expandable = styled.details` margin-top: 0.5rem; diff --git a/src/v1-check/components/Results/TraceRoute.tsx b/src/web-check-live/components/Results/TraceRoute.tsx similarity index 93% rename from src/v1-check/components/Results/TraceRoute.tsx rename to src/web-check-live/components/Results/TraceRoute.tsx index be7bb33..af167af 100644 --- a/src/v1-check/components/Results/TraceRoute.tsx +++ b/src/web-check-live/components/Results/TraceRoute.tsx @@ -1,6 +1,6 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; const RouteRow = styled.div` text-align: center; diff --git a/src/v1-check/components/Results/TxtRecords.tsx b/src/web-check-live/components/Results/TxtRecords.tsx similarity index 85% rename from src/v1-check/components/Results/TxtRecords.tsx rename to src/web-check-live/components/Results/TxtRecords.tsx index c509e31..bac1c97 100644 --- a/src/v1-check/components/Results/TxtRecords.tsx +++ b/src/web-check-live/components/Results/TxtRecords.tsx @@ -1,6 +1,6 @@ -import { Card } from 'v1-check/components/Form/Card'; -import Row from 'v1-check/components/Form/Row'; +import { Card } from 'web-check-live/components/Form/Card'; +import Row from 'web-check-live/components/Form/Row'; const cardStyles = ` grid-column: span 2; diff --git a/src/v1-check/components/Results/WhoIs.tsx b/src/web-check-live/components/Results/WhoIs.tsx similarity index 88% rename from src/v1-check/components/Results/WhoIs.tsx rename to src/web-check-live/components/Results/WhoIs.tsx index c8e1b77..a738a9a 100644 --- a/src/v1-check/components/Results/WhoIs.tsx +++ b/src/web-check-live/components/Results/WhoIs.tsx @@ -1,9 +1,9 @@ import styled from '@emotion/styled'; -import type { Whois } from 'v1-check/utils/result-processor'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; +import type { Whois } from 'web-check-live/utils/result-processor'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; const Row = styled.div` display: flex; diff --git a/src/v1-check/components/misc/ActionButtons.tsx b/src/web-check-live/components/misc/ActionButtons.tsx similarity index 91% rename from src/v1-check/components/misc/ActionButtons.tsx rename to src/web-check-live/components/misc/ActionButtons.tsx index 82c313b..087c11d 100644 --- a/src/v1-check/components/misc/ActionButtons.tsx +++ b/src/web-check-live/components/misc/ActionButtons.tsx @@ -1,6 +1,6 @@ import styled from '@emotion/styled'; -import Button from 'v1-check/components/Form/Button'; -import colors from 'v1-check/styles/colors'; +import Button from 'web-check-live/components/Form/Button'; +import colors from 'web-check-live/styles/colors'; const ActionButtonContainer = styled.div` position: absolute; diff --git a/src/v1-check/components/misc/AdditionalResources.tsx b/src/web-check-live/components/misc/AdditionalResources.tsx similarity index 98% rename from src/v1-check/components/misc/AdditionalResources.tsx rename to src/web-check-live/components/misc/AdditionalResources.tsx index ce7e52b..8f80072 100644 --- a/src/v1-check/components/misc/AdditionalResources.tsx +++ b/src/web-check-live/components/misc/AdditionalResources.tsx @@ -1,6 +1,6 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; const ResourceListOuter = styled.ul` list-style: none; diff --git a/src/v1-check/components/misc/DocContent.tsx b/src/web-check-live/components/misc/DocContent.tsx similarity index 90% rename from src/v1-check/components/misc/DocContent.tsx rename to src/web-check-live/components/misc/DocContent.tsx index a7f630e..2d3587d 100644 --- a/src/v1-check/components/misc/DocContent.tsx +++ b/src/web-check-live/components/misc/DocContent.tsx @@ -1,7 +1,7 @@ import styled from '@emotion/styled'; -import docs, { type Doc } from 'v1-check/utils/docs'; -import colors from 'v1-check/styles/colors'; -import Heading from 'v1-check/components/Form/Heading'; +import docs, { type Doc } from 'web-check-live/utils/docs'; +import colors from 'web-check-live/styles/colors'; +import Heading from 'web-check-live/components/Form/Heading'; const JobDocsContainer = styled.div` p.doc-desc, p.doc-uses, ul { diff --git a/src/v1-check/components/misc/ErrorBoundary.tsx b/src/web-check-live/components/misc/ErrorBoundary.tsx similarity index 90% rename from src/v1-check/components/misc/ErrorBoundary.tsx rename to src/web-check-live/components/misc/ErrorBoundary.tsx index 9895103..ecc933a 100644 --- a/src/v1-check/components/misc/ErrorBoundary.tsx +++ b/src/web-check-live/components/misc/ErrorBoundary.tsx @@ -1,8 +1,8 @@ import React, { Component, type ErrorInfo, type ReactNode } from "react"; import styled from '@emotion/styled'; -import Card from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import Card from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; interface Props { children: ReactNode; diff --git a/src/v1-check/components/misc/FancyBackground.tsx b/src/web-check-live/components/misc/FancyBackground.tsx similarity index 100% rename from src/v1-check/components/misc/FancyBackground.tsx rename to src/web-check-live/components/misc/FancyBackground.tsx diff --git a/src/v1-check/components/misc/Flag.tsx b/src/web-check-live/components/misc/Flag.tsx similarity index 100% rename from src/v1-check/components/misc/Flag.tsx rename to src/web-check-live/components/misc/Flag.tsx diff --git a/src/v1-check/components/misc/Footer.tsx b/src/web-check-live/components/misc/Footer.tsx similarity index 96% rename from src/v1-check/components/misc/Footer.tsx rename to src/web-check-live/components/misc/Footer.tsx index 37cb243..1531e6d 100644 --- a/src/v1-check/components/misc/Footer.tsx +++ b/src/web-check-live/components/misc/Footer.tsx @@ -1,5 +1,5 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; +import colors from 'web-check-live/styles/colors'; const StyledFooter = styled.footer` bottom: 0; diff --git a/src/v1-check/components/misc/Loader.tsx b/src/web-check-live/components/misc/Loader.tsx similarity index 93% rename from src/v1-check/components/misc/Loader.tsx rename to src/web-check-live/components/misc/Loader.tsx index de08867..660c9ff 100644 --- a/src/v1-check/components/misc/Loader.tsx +++ b/src/web-check-live/components/misc/Loader.tsx @@ -1,8 +1,8 @@ import styled from '@emotion/styled'; -import { StyledCard } from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; -import colors from 'v1-check/styles/colors'; +import { StyledCard } from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; const LoaderContainer = styled(StyledCard)` margin: 0 auto 1rem auto; diff --git a/src/v1-check/components/misc/LocationMap.tsx b/src/web-check-live/components/misc/LocationMap.tsx similarity index 90% rename from src/v1-check/components/misc/LocationMap.tsx rename to src/web-check-live/components/misc/LocationMap.tsx index aad32ed..a6b5184 100644 --- a/src/v1-check/components/misc/LocationMap.tsx +++ b/src/web-check-live/components/misc/LocationMap.tsx @@ -5,8 +5,8 @@ import { Annotation, } from 'react-simple-maps'; -import colors from 'v1-check/styles/colors'; -import MapFeatures from 'v1-check/assets/data/map-features.json'; +import colors from 'web-check-live/styles/colors'; +import MapFeatures from 'web-check-live/assets/data/map-features.json'; interface Props { lat: number, diff --git a/src/v1-check/components/misc/ProgressBar.tsx b/src/web-check-live/components/misc/ProgressBar.tsx similarity index 98% rename from src/v1-check/components/misc/ProgressBar.tsx rename to src/web-check-live/components/misc/ProgressBar.tsx index 64dac3c..c29bb88 100644 --- a/src/v1-check/components/misc/ProgressBar.tsx +++ b/src/web-check-live/components/misc/ProgressBar.tsx @@ -1,7 +1,7 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import Card from 'v1-check/components/Form/Card'; -import Heading from 'v1-check/components/Form/Heading'; +import colors from 'web-check-live/styles/colors'; +import Card from 'web-check-live/components/Form/Card'; +import Heading from 'web-check-live/components/Form/Heading'; import { useState, useEffect, type ReactNode } from 'react'; diff --git a/src/v1-check/components/misc/SelfScanMsg.tsx b/src/web-check-live/components/misc/SelfScanMsg.tsx similarity index 93% rename from src/v1-check/components/misc/SelfScanMsg.tsx rename to src/web-check-live/components/misc/SelfScanMsg.tsx index 6650798..ac48e5f 100644 --- a/src/v1-check/components/misc/SelfScanMsg.tsx +++ b/src/web-check-live/components/misc/SelfScanMsg.tsx @@ -1,7 +1,7 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { StyledCard } from 'v1-check/components/Form/Card'; +import colors from 'web-check-live/styles/colors'; +import { StyledCard } from 'web-check-live/components/Form/Card'; const StyledSelfScanMsg = styled(StyledCard)` margin: 0px auto 1rem; diff --git a/src/v1-check/components/misc/ViewRaw.tsx b/src/web-check-live/components/misc/ViewRaw.tsx similarity index 94% rename from src/v1-check/components/misc/ViewRaw.tsx rename to src/web-check-live/components/misc/ViewRaw.tsx index 1888fef..968addd 100644 --- a/src/v1-check/components/misc/ViewRaw.tsx +++ b/src/web-check-live/components/misc/ViewRaw.tsx @@ -1,8 +1,8 @@ import React, { useState } from 'react'; import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import { Card } from 'v1-check/components/Form/Card'; -import Button from 'v1-check/components/Form/Button'; +import colors from 'web-check-live/styles/colors'; +import { Card } from 'web-check-live/components/Form/Card'; +import Button from 'web-check-live/components/Form/Button'; const CardStyles = ` margin: 0 auto 1rem auto; diff --git a/src/v1-check/hooks/motherOfAllHooks.ts b/src/web-check-live/hooks/motherOfAllHooks.ts similarity index 96% rename from src/v1-check/hooks/motherOfAllHooks.ts rename to src/web-check-live/hooks/motherOfAllHooks.ts index 6359231..3848252 100644 --- a/src/v1-check/hooks/motherOfAllHooks.ts +++ b/src/web-check-live/hooks/motherOfAllHooks.ts @@ -2,8 +2,8 @@ import { useState, useEffect } from 'react'; import { toast } from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; -import type { LoadingState } from 'v1-check/components/misc/ProgressBar'; -import type { AddressType } from 'v1-check/utils/address-type-checker'; +import type { LoadingState } from 'web-check-live/components/misc/ProgressBar'; +import type { AddressType } from 'web-check-live/utils/address-type-checker'; interface UseIpAddressProps { // Unique identifier for this job type diff --git a/src/v1-check/views/main.tsx b/src/web-check-live/main.tsx similarity index 100% rename from src/v1-check/views/main.tsx rename to src/web-check-live/main.tsx diff --git a/src/v1-check/styles/colors.ts b/src/web-check-live/styles/colors.ts similarity index 100% rename from src/v1-check/styles/colors.ts rename to src/web-check-live/styles/colors.ts diff --git a/src/v1-check/styles/dimensions.ts b/src/web-check-live/styles/dimensions.ts similarity index 100% rename from src/v1-check/styles/dimensions.ts rename to src/web-check-live/styles/dimensions.ts diff --git a/src/v1-check/styles/globals.tsx b/src/web-check-live/styles/globals.tsx similarity index 100% rename from src/v1-check/styles/globals.tsx rename to src/web-check-live/styles/globals.tsx diff --git a/src/v1-check/styles/index.css b/src/web-check-live/styles/index.css similarity index 100% rename from src/v1-check/styles/index.css rename to src/web-check-live/styles/index.css diff --git a/src/v1-check/styles/typography.ts b/src/web-check-live/styles/typography.ts similarity index 100% rename from src/v1-check/styles/typography.ts rename to src/web-check-live/styles/typography.ts diff --git a/src/v1-check/typings/file-types.d.ts b/src/web-check-live/typings/file-types.d.ts similarity index 100% rename from src/v1-check/typings/file-types.d.ts rename to src/web-check-live/typings/file-types.d.ts diff --git a/src/v1-check/typings/react-simple-maps.d.ts b/src/web-check-live/typings/react-simple-maps.d.ts similarity index 100% rename from src/v1-check/typings/react-simple-maps.d.ts rename to src/web-check-live/typings/react-simple-maps.d.ts diff --git a/src/v1-check/utils/address-type-checker.ts b/src/web-check-live/utils/address-type-checker.ts similarity index 100% rename from src/v1-check/utils/address-type-checker.ts rename to src/web-check-live/utils/address-type-checker.ts diff --git a/src/v1-check/utils/docs.ts b/src/web-check-live/utils/docs.ts similarity index 100% rename from src/v1-check/utils/docs.ts rename to src/web-check-live/utils/docs.ts diff --git a/src/v1-check/utils/get-keys.ts b/src/web-check-live/utils/get-keys.ts similarity index 100% rename from src/v1-check/utils/get-keys.ts rename to src/web-check-live/utils/get-keys.ts diff --git a/src/v1-check/utils/result-processor.ts b/src/web-check-live/utils/result-processor.ts similarity index 98% rename from src/v1-check/utils/result-processor.ts rename to src/web-check-live/utils/result-processor.ts index bb63a37..2e1369f 100644 --- a/src/v1-check/utils/result-processor.ts +++ b/src/web-check-live/utils/result-processor.ts @@ -1,4 +1,4 @@ -import type { RowProps } from 'v1-check/components/Form/Row'; +import type { RowProps } from 'web-check-live/components/Form/Row'; export interface ServerLocation { city: string, diff --git a/src/v1-check/views/About.tsx b/src/web-check-live/views/About.tsx similarity index 96% rename from src/v1-check/views/About.tsx rename to src/web-check-live/views/About.tsx index 89ff43e..89676d3 100644 --- a/src/v1-check/views/About.tsx +++ b/src/web-check-live/views/About.tsx @@ -1,13 +1,13 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import Heading from 'v1-check/components/Form/Heading'; -import Footer from 'v1-check/components/misc/Footer'; -import Nav from 'v1-check/components/Form/Nav'; -import Button from 'v1-check/components/Form/Button'; -import AdditionalResources from 'v1-check/components/misc/AdditionalResources'; -import { StyledCard } from 'v1-check/components/Form/Card'; -import docs, { about, featureIntro, license, fairUse, supportUs } from 'v1-check/utils/docs'; +import colors from 'web-check-live/styles/colors'; +import Heading from 'web-check-live/components/Form/Heading'; +import Footer from 'web-check-live/components/misc/Footer'; +import Nav from 'web-check-live/components/Form/Nav'; +import Button from 'web-check-live/components/Form/Button'; +import AdditionalResources from 'web-check-live/components/misc/AdditionalResources'; +import { StyledCard } from 'web-check-live/components/Form/Card'; +import docs, { about, featureIntro, license, fairUse, supportUs } from 'web-check-live/utils/docs'; const AboutContainer = styled.div` width: 95vw; diff --git a/src/v1-check/views/Home.tsx b/src/web-check-live/views/Home.tsx similarity index 93% rename from src/v1-check/views/Home.tsx rename to src/web-check-live/views/Home.tsx index 9d55c61..17393cb 100644 --- a/src/v1-check/views/Home.tsx +++ b/src/web-check-live/views/Home.tsx @@ -2,16 +2,16 @@ import styled from '@emotion/styled'; import { type ChangeEvent, type FormEvent, useState, useEffect } from 'react'; import { useNavigate, useLocation, type NavigateOptions } from 'react-router-dom'; -import Heading from 'v1-check/components/Form/Heading'; -import Input from 'v1-check/components/Form/Input' -import Button from 'v1-check/components/Form/Button'; -import { StyledCard } from 'v1-check/components/Form/Card'; -import Footer from 'v1-check/components/misc/Footer'; -import FancyBackground from 'v1-check/components/misc/FancyBackground'; +import Heading from 'web-check-live/components/Form/Heading'; +import Input from 'web-check-live/components/Form/Input' +import Button from 'web-check-live/components/Form/Button'; +import { StyledCard } from 'web-check-live/components/Form/Card'; +import Footer from 'web-check-live/components/misc/Footer'; +import FancyBackground from 'web-check-live/components/misc/FancyBackground'; -import docs from 'v1-check/utils/docs'; -import colors from 'v1-check/styles/colors'; -import { determineAddressType } from 'v1-check/utils/address-type-checker'; +import docs from 'web-check-live/utils/docs'; +import colors from 'web-check-live/styles/colors'; +import { determineAddressType } from 'web-check-live/utils/address-type-checker'; const HomeContainer = styled.section` display: flex; diff --git a/src/v1-check/views/NotFound.tsx b/src/web-check-live/views/NotFound.tsx similarity index 78% rename from src/v1-check/views/NotFound.tsx rename to src/web-check-live/views/NotFound.tsx index 2384942..dc33339 100644 --- a/src/v1-check/views/NotFound.tsx +++ b/src/web-check-live/views/NotFound.tsx @@ -1,12 +1,12 @@ import styled from '@emotion/styled'; -import colors from 'v1-check/styles/colors'; -import Heading from 'v1-check/components/Form/Heading'; -import Footer from 'v1-check/components/misc/Footer'; -import Nav from 'v1-check/components/Form/Nav'; -import Button from 'v1-check/components/Form/Button'; -import { StyledCard } from 'v1-check/components/Form/Card'; +import colors from 'web-check-live/styles/colors'; +import Heading from 'web-check-live/components/Form/Heading'; +import Footer from 'web-check-live/components/misc/Footer'; +import Nav from 'web-check-live/components/Form/Nav'; +import Button from 'web-check-live/components/Form/Button'; +import { StyledCard } from 'web-check-live/components/Form/Card'; const AboutContainer = styled.div` width: 95vw; diff --git a/src/v1-check/views/Results.tsx b/src/web-check-live/views/Results.tsx similarity index 88% rename from src/v1-check/views/Results.tsx rename to src/web-check-live/views/Results.tsx index b49fb6e..f0eb4fc 100644 --- a/src/v1-check/views/Results.tsx +++ b/src/web-check-live/views/Results.tsx @@ -4,69 +4,69 @@ import styled from '@emotion/styled'; import { ToastContainer } from 'react-toastify'; import Masonry from 'react-masonry-css' -import colors from 'v1-check/styles/colors'; -import Heading from 'v1-check/components/Form/Heading'; -import Modal from 'v1-check/components/Form/Modal'; -import Footer from 'v1-check/components/misc/Footer'; -import Nav from 'v1-check/components/Form/Nav'; -import type { RowProps } from 'v1-check/components/Form/Row'; +import colors from 'web-check-live/styles/colors'; +import Heading from 'web-check-live/components/Form/Heading'; +import Modal from 'web-check-live/components/Form/Modal'; +import Footer from 'web-check-live/components/misc/Footer'; +import Nav from 'web-check-live/components/Form/Nav'; +import type { RowProps } from 'web-check-live/components/Form/Row'; -import Loader from 'v1-check/components/misc/Loader'; -import ErrorBoundary from 'v1-check/components/misc/ErrorBoundary'; -import SelfScanMsg from 'v1-check/components/misc/SelfScanMsg'; -import DocContent from 'v1-check/components/misc/DocContent'; -import ProgressBar, { type LoadingJob, type LoadingState, initialJobs } from 'v1-check/components/misc/ProgressBar'; -import ActionButtons from 'v1-check/components/misc/ActionButtons'; -import AdditionalResources from 'v1-check/components/misc/AdditionalResources'; -import ViewRaw from 'v1-check/components/misc/ViewRaw'; +import Loader from 'web-check-live/components/misc/Loader'; +import ErrorBoundary from 'web-check-live/components/misc/ErrorBoundary'; +import SelfScanMsg from 'web-check-live/components/misc/SelfScanMsg'; +import DocContent from 'web-check-live/components/misc/DocContent'; +import ProgressBar, { type LoadingJob, type LoadingState, initialJobs } from 'web-check-live/components/misc/ProgressBar'; +import ActionButtons from 'web-check-live/components/misc/ActionButtons'; +import AdditionalResources from 'web-check-live/components/misc/AdditionalResources'; +import ViewRaw from 'web-check-live/components/misc/ViewRaw'; -import ServerLocationCard from 'v1-check/components/Results/ServerLocation'; -import ServerInfoCard from 'v1-check/components/Results/ServerInfo'; -import HostNamesCard from 'v1-check/components/Results/HostNames'; -import WhoIsCard from 'v1-check/components/Results/WhoIs'; -import LighthouseCard from 'v1-check/components/Results/Lighthouse'; -import ScreenshotCard from 'v1-check/components/Results/Screenshot'; -import SslCertCard from 'v1-check/components/Results/SslCert'; -import HeadersCard from 'v1-check/components/Results/Headers'; -import CookiesCard from 'v1-check/components/Results/Cookies'; -import RobotsTxtCard from 'v1-check/components/Results/RobotsTxt'; -import DnsRecordsCard from 'v1-check/components/Results/DnsRecords'; -import RedirectsCard from 'v1-check/components/Results/Redirects'; -import TxtRecordCard from 'v1-check/components/Results/TxtRecords'; -import ServerStatusCard from 'v1-check/components/Results/ServerStatus'; -import OpenPortsCard from 'v1-check/components/Results/OpenPorts'; -import TraceRouteCard from 'v1-check/components/Results/TraceRoute'; -import CarbonFootprintCard from 'v1-check/components/Results/CarbonFootprint'; -import SiteFeaturesCard from 'v1-check/components/Results/SiteFeatures'; -import DnsSecCard from 'v1-check/components/Results/DnsSec'; -import HstsCard from 'v1-check/components/Results/Hsts'; -import SitemapCard from 'v1-check/components/Results/Sitemap'; -import DomainLookup from 'v1-check/components/Results/DomainLookup'; -import DnsServerCard from 'v1-check/components/Results/DnsServer'; -import TechStackCard from 'v1-check/components/Results/TechStack'; -import SecurityTxtCard from 'v1-check/components/Results/SecurityTxt'; -import ContentLinksCard from 'v1-check/components/Results/ContentLinks'; -import SocialTagsCard from 'v1-check/components/Results/SocialTags'; -import MailConfigCard from 'v1-check/components/Results/MailConfig'; -import HttpSecurityCard from 'v1-check/components/Results/HttpSecurity'; -import FirewallCard from 'v1-check/components/Results/Firewall'; -import ArchivesCard from 'v1-check/components/Results/Archives'; -import RankCard from 'v1-check/components/Results/Rank'; -import BlockListsCard from 'v1-check/components/Results/BlockLists'; -import ThreatsCard from 'v1-check/components/Results/Threats'; -import TlsCipherSuitesCard from 'v1-check/components/Results/TlsCipherSuites'; -import TlsIssueAnalysisCard from 'v1-check/components/Results/TlsIssueAnalysis'; -import TlsClientSupportCard from 'v1-check/components/Results/TlsClientSupport'; +import ServerLocationCard from 'web-check-live/components/Results/ServerLocation'; +import ServerInfoCard from 'web-check-live/components/Results/ServerInfo'; +import HostNamesCard from 'web-check-live/components/Results/HostNames'; +import WhoIsCard from 'web-check-live/components/Results/WhoIs'; +import LighthouseCard from 'web-check-live/components/Results/Lighthouse'; +import ScreenshotCard from 'web-check-live/components/Results/Screenshot'; +import SslCertCard from 'web-check-live/components/Results/SslCert'; +import HeadersCard from 'web-check-live/components/Results/Headers'; +import CookiesCard from 'web-check-live/components/Results/Cookies'; +import RobotsTxtCard from 'web-check-live/components/Results/RobotsTxt'; +import DnsRecordsCard from 'web-check-live/components/Results/DnsRecords'; +import RedirectsCard from 'web-check-live/components/Results/Redirects'; +import TxtRecordCard from 'web-check-live/components/Results/TxtRecords'; +import ServerStatusCard from 'web-check-live/components/Results/ServerStatus'; +import OpenPortsCard from 'web-check-live/components/Results/OpenPorts'; +import TraceRouteCard from 'web-check-live/components/Results/TraceRoute'; +import CarbonFootprintCard from 'web-check-live/components/Results/CarbonFootprint'; +import SiteFeaturesCard from 'web-check-live/components/Results/SiteFeatures'; +import DnsSecCard from 'web-check-live/components/Results/DnsSec'; +import HstsCard from 'web-check-live/components/Results/Hsts'; +import SitemapCard from 'web-check-live/components/Results/Sitemap'; +import DomainLookup from 'web-check-live/components/Results/DomainLookup'; +import DnsServerCard from 'web-check-live/components/Results/DnsServer'; +import TechStackCard from 'web-check-live/components/Results/TechStack'; +import SecurityTxtCard from 'web-check-live/components/Results/SecurityTxt'; +import ContentLinksCard from 'web-check-live/components/Results/ContentLinks'; +import SocialTagsCard from 'web-check-live/components/Results/SocialTags'; +import MailConfigCard from 'web-check-live/components/Results/MailConfig'; +import HttpSecurityCard from 'web-check-live/components/Results/HttpSecurity'; +import FirewallCard from 'web-check-live/components/Results/Firewall'; +import ArchivesCard from 'web-check-live/components/Results/Archives'; +import RankCard from 'web-check-live/components/Results/Rank'; +import BlockListsCard from 'web-check-live/components/Results/BlockLists'; +import ThreatsCard from 'web-check-live/components/Results/Threats'; +import TlsCipherSuitesCard from 'web-check-live/components/Results/TlsCipherSuites'; +import TlsIssueAnalysisCard from 'web-check-live/components/Results/TlsIssueAnalysis'; +import TlsClientSupportCard from 'web-check-live/components/Results/TlsClientSupport'; -import keys from 'v1-check/utils/get-keys'; -import { determineAddressType, type AddressType } from 'v1-check/utils/address-type-checker'; -import useMotherHook from 'v1-check/hooks/motherOfAllHooks'; +import keys from 'web-check-live/utils/get-keys'; +import { determineAddressType, type AddressType } from 'web-check-live/utils/address-type-checker'; +import useMotherHook from 'web-check-live/hooks/motherOfAllHooks'; import { getLocation, type ServerLocation, type Cookie, applyWhoIsResults, type Whois, parseShodanResults, type ShodanResults -} from 'v1-check/utils/result-processor'; +} from 'web-check-live/utils/result-processor'; const ResultsOuter = styled.div` display: flex;