Move images to public
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 409 B After Width: | Height: | Size: 409 B |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 109 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 425 B After Width: | Height: | Size: 425 B |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 615 B |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -2,7 +2,7 @@ import React, { ComponentProps } from "react";
|
||||
import styled from "styled-components";
|
||||
import { colors }from "@theme/colors";
|
||||
import { Link } from "@components/index";
|
||||
import AddIcon from "@assets/img/add-icon.png";
|
||||
const AddIcon = "/img/add-icon.png";
|
||||
|
||||
const StyledLink = styled(Link)`
|
||||
display: flex;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import React from "react";
|
||||
import styled from "styled-components";
|
||||
import blank_profile from "@assets/img/blank_profile.png";
|
||||
import { Role } from "@models/Contacts";
|
||||
import { colors } from "@theme/colors";
|
||||
const blank_profile = "/img/blank_profile.png";
|
||||
|
||||
const Card = styled.article`
|
||||
display: flex;
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import React from "react";
|
||||
import styled from "styled-components";
|
||||
import { Link } from "@components/index";
|
||||
import TitleImage from "@assets/img/SIK_RGB_W_side.png";
|
||||
import breakpoints from "@theme/breakpoints";
|
||||
|
||||
const TitleImage = "/img/SIK_RGB_W_side.png";
|
||||
|
||||
// TODO: Responsive size
|
||||
const Logo = styled.img`
|
||||
max-width: 300px;
|
||||
|
||||
@@ -3,10 +3,11 @@ import styled from "styled-components";
|
||||
import shortid from "shortid";
|
||||
import { DragDropContext, Droppable } from "react-beautiful-dnd";
|
||||
import { Question } from "."
|
||||
import AddIcon from "@assets/img/add-icon.png";
|
||||
import colors from "@theme/colors";
|
||||
import QuestionList from "./QuestionList";
|
||||
|
||||
const AddIcon = "/img/add-icon.png";
|
||||
|
||||
const Widget = styled.div`
|
||||
& > button {
|
||||
display: flex;
|
||||
|
||||
@@ -10,17 +10,17 @@ import FullWidthSection from "@components/Sections/FullWidthSection";
|
||||
import noop from "@utils/noop";
|
||||
|
||||
// Corporate logos import
|
||||
import ABB from "@assets/img/corporate_logos/abb.png";
|
||||
import Capgemini from "@assets/img/corporate_logos/capgemini.png";
|
||||
import Caruna from "@assets/img/corporate_logos/caruna.jpg";
|
||||
import Eaton from "@assets/img/corporate_logos/eaton.png";
|
||||
import Ensto from "@assets/img/corporate_logos/ensto.jpg";
|
||||
import eSett from "@assets/img/corporate_logos/esett.png";
|
||||
import Fennovoima from "@assets/img/corporate_logos/fennovoima.png";
|
||||
import Fingrid from "@assets/img/corporate_logos/fingrid.jpg";
|
||||
import NRCGroup from "@assets/img/corporate_logos/nrcgroup.png";
|
||||
import Okmetic from "@assets/img/corporate_logos/okmetic.png";
|
||||
import Sogeti from "@assets/img/corporate_logos/sogeti.jpg";
|
||||
const ABB = "/img/corporate_logos/abb.png";
|
||||
const Capgemini = "/img/corporate_logos/capgemini.png";
|
||||
const Caruna = "/img/corporate_logos/caruna.jpg";
|
||||
const Eaton = "/img/corporate_logos/eaton.png";
|
||||
const Ensto = "/img/corporate_logos/ensto.jpg";
|
||||
const eSett = "/img/corporate_logos/esett.png";
|
||||
const Fennovoima = "/img/corporate_logos/fennovoima.png";
|
||||
const Fingrid = "/img/corporate_logos/fingrid.jpg";
|
||||
const NRCGroup = "/img/corporate_logos/nrcgroup.png";
|
||||
const Okmetic = "/img/corporate_logos/okmetic.png";
|
||||
const Sogeti = "/img/corporate_logos/sogeti.jpg";
|
||||
|
||||
|
||||
interface FrontPageViewProps {
|
||||
|
||||