refactor sections and init challenge page
This commit is contained in:
parent
d9f5d87081
commit
7c45a64b4f
@ -5,6 +5,8 @@ import Challenges from "./pages/Challanges/Challenges";
|
|||||||
import {BrowserRouter, Route, Routes} from "react-router-dom";
|
import {BrowserRouter, Route, Routes} from "react-router-dom";
|
||||||
import NavBar from "./components/elements/NavBar";
|
import NavBar from "./components/elements/NavBar";
|
||||||
import Footer from "./components/sections/Footer";
|
import Footer from "./components/sections/Footer";
|
||||||
|
import {CHALLENGE_PAGE, CHALLENGES_PAGE} from "./utils/globals";
|
||||||
|
import Challenge from "./pages/Challenge";
|
||||||
|
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return (
|
return (
|
||||||
@ -12,7 +14,8 @@ const App = () => {
|
|||||||
<ThemeProvider theme={theme}>
|
<ThemeProvider theme={theme}>
|
||||||
<NavBar/>
|
<NavBar/>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path='/challenges' element={<Challenges/>}/>
|
<Route path={`${CHALLENGE_PAGE}/:challengeId`} element={<Challenge/>}/>
|
||||||
|
<Route path={CHALLENGES_PAGE} element={<Challenges/>}/>
|
||||||
<Route exact path='/' element={<LandingPage/>}/>
|
<Route exact path='/' element={<LandingPage/>}/>
|
||||||
<Route element={<LandingPage/>}/>
|
<Route element={<LandingPage/>}/>
|
||||||
</Routes>
|
</Routes>
|
||||||
|
@ -3,12 +3,16 @@ import {Container, FlexColumn, FlexRow, Grid} from "../../utils/containers";
|
|||||||
import {Body, H3} from "../../utils/fonts";
|
import {Body, H3} from "../../utils/fonts";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import IconLabel from "./IconLabel";
|
import IconLabel from "./IconLabel";
|
||||||
|
import {Link} from "react-router-dom";
|
||||||
|
import {CHALLENGE_PAGE} from "../../utils/globals";
|
||||||
|
|
||||||
const ChallengeStyle = styled(FlexColumn)`
|
const ChallengeStyle = styled(FlexColumn)`
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
border: 1px solid ${({theme}) => theme.colors.dark05};
|
border: 1px solid ${({theme}) => theme.colors.dark05};
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: transform 0.3s ease-in-out;
|
transition: transform 0.3s ease-in-out;
|
||||||
|
position: relative;
|
||||||
|
max-width: 420px;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
@ -21,6 +25,14 @@ const ChallengeStyle = styled(FlexColumn)`
|
|||||||
&:hover {
|
&:hover {
|
||||||
transform: scale(1.05);
|
transform: scale(1.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Line = styled(Container)`
|
const Line = styled(Container)`
|
||||||
@ -78,6 +90,7 @@ const MiniChallenge = (props) => {
|
|||||||
{props.prize}
|
{props.prize}
|
||||||
</IconLabel> : ''}
|
</IconLabel> : ''}
|
||||||
</IconsGrid>
|
</IconsGrid>
|
||||||
|
<Container as={Link} to={`${CHALLENGE_PAGE}/${props.name}`}/>
|
||||||
</ChallengeStyle>
|
</ChallengeStyle>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@ import registerIco from '../../assets/register_ico.svg';
|
|||||||
import cupIco from '../../assets/cup_ico.svg';
|
import cupIco from '../../assets/cup_ico.svg';
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import {Link} from "react-router-dom";
|
import {Link} from "react-router-dom";
|
||||||
|
import {CHALLENGES_PAGE} from "../../utils/globals";
|
||||||
|
|
||||||
const MobileNavMenuStyle = styled(FlexColumn)`
|
const MobileNavMenuStyle = styled(FlexColumn)`
|
||||||
gap: 32px;
|
gap: 32px;
|
||||||
@ -61,7 +62,7 @@ const MobileNavMenu = (props) => {
|
|||||||
Register
|
Register
|
||||||
</Menu>
|
</Menu>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
<FlexRow as={Link} to='/challenges' gap='16px'>
|
<FlexRow as={Link} to={CHALLENGES_PAGE} gap='16px'>
|
||||||
<Svg width='16px' height='16px' src={cupIco}/>
|
<Svg width='16px' height='16px' src={cupIco}/>
|
||||||
<Menu as='li'>
|
<Menu as='li'>
|
||||||
Challenges
|
Challenges
|
||||||
|
@ -4,6 +4,13 @@ import {Body, H2, Medium} from "../../utils/fonts";
|
|||||||
import CircleNumber from "../elements/CircleNumber";
|
import CircleNumber from "../elements/CircleNumber";
|
||||||
|
|
||||||
const Commercial = () => {
|
const Commercial = () => {
|
||||||
|
const listItemsContent = [
|
||||||
|
'A company comes to CSI with a business need',
|
||||||
|
'CSI determines the need with an appropriate challenge on Gonito',
|
||||||
|
'The challenge is solved by willing users',
|
||||||
|
'The company appropriately rewards users who have contributed to the required outcome',
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FlexColumn as='section' alignmentX='flex-start'>
|
<FlexColumn as='section' alignmentX='flex-start'>
|
||||||
<H2 as='h2' margin='0 0 24px 0'>
|
<H2 as='h2' margin='0 0 24px 0'>
|
||||||
@ -16,30 +23,18 @@ const Commercial = () => {
|
|||||||
translates into an award for solving it according to the client's requirements.
|
translates into an award for solving it according to the client's requirements.
|
||||||
</Body>
|
</Body>
|
||||||
<FlexColumn as='ul' gap='16px' alignmentX='flex-start'>
|
<FlexColumn as='ul' gap='16px' alignmentX='flex-start'>
|
||||||
<FlexRow width='100%' gap='8px'>
|
{
|
||||||
<CircleNumber number={1}/>
|
listItemsContent.map((item, index) => {
|
||||||
|
return (
|
||||||
|
<FlexRow key={`commercial-item-${index}`} width='100%' gap='8px'>
|
||||||
|
<CircleNumber number={index + 1}/>
|
||||||
<Medium width='80%' as='li'>
|
<Medium width='80%' as='li'>
|
||||||
A company comes to CSI with a business need
|
{item}
|
||||||
</Medium>
|
|
||||||
</FlexRow>
|
|
||||||
<FlexRow width='100%' gap='8px'>
|
|
||||||
<CircleNumber number={2}/>
|
|
||||||
<Medium width='80%' as='li'>
|
|
||||||
CSI determines the need with an appropriate challenge on Gonito
|
|
||||||
</Medium>
|
|
||||||
</FlexRow>
|
|
||||||
<FlexRow width='100%' gap='8px'>
|
|
||||||
<CircleNumber number={3}/>
|
|
||||||
<Medium width='80%' as='li'>
|
|
||||||
The challenge is solved by willing users
|
|
||||||
</Medium>
|
|
||||||
</FlexRow>
|
|
||||||
<FlexRow width='100%' gap='8px'>
|
|
||||||
<CircleNumber number={4}/>
|
|
||||||
<Medium width='80%' as='li'>
|
|
||||||
The company appropriately rewards users who have contributed to the required outcome
|
|
||||||
</Medium>
|
</Medium>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
}
|
||||||
</FlexColumn>
|
</FlexColumn>
|
||||||
<Body as='p'>
|
<Body as='p'>
|
||||||
Open challenges can allow you to find the right people to work with. Find a challenge for your team
|
Open challenges can allow you to find the right people to work with. Find a challenge for your team
|
||||||
|
@ -9,8 +9,8 @@ const Csi = () => {
|
|||||||
Center for artificial intelligence
|
Center for artificial intelligence
|
||||||
</H2>
|
</H2>
|
||||||
<Body as='p' margin='0 0 16px 0'>
|
<Body as='p' margin='0 0 16px 0'>
|
||||||
<Medium display='inline'>Gonito.net</Medium> belongs to the
|
<Medium as='span' display='inline'>Gonito.net</Medium> belongs to the
|
||||||
<Medium display='inline'> Artificial Intelligence Centre (CSI) </Medium>
|
<Medium as='span' display='inline'> Artificial Intelligence Centre (CSI) </Medium>
|
||||||
at Adam Mickiewicz University (UAM) which conducts research on the development of artificial
|
at Adam Mickiewicz University (UAM) which conducts research on the development of artificial
|
||||||
intelligence, carries out scientific and research and development projects, integrates the research
|
intelligence, carries out scientific and research and development projects, integrates the research
|
||||||
of scientists from various departments of Adam Mickiewicz University and outside it - from leading
|
of scientists from various departments of Adam Mickiewicz University and outside it - from leading
|
||||||
|
@ -5,33 +5,33 @@ import cubeIcon from '../../assets/cube_ico.svg';
|
|||||||
import theme from "../../utils/theme";
|
import theme from "../../utils/theme";
|
||||||
|
|
||||||
const Motivation = () => {
|
const Motivation = () => {
|
||||||
|
|
||||||
|
const content = [
|
||||||
|
'Explore interesting solutions to problems using AI',
|
||||||
|
'Train by solving our challenges',
|
||||||
|
'Participate in competitions with commercial challenges'
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FlexColumn as='section' alignmentX='flex-start' gap='24px' width='100%'>
|
<FlexColumn as='section' alignmentX='flex-start' gap='24px' width='100%'>
|
||||||
<H2 as='h2'>
|
<H2 as='h2'>
|
||||||
Motivation
|
Motivation
|
||||||
</H2>
|
</H2>
|
||||||
|
|
||||||
<FlexColumn as='ul' gap='16px' alignmentX='flex-start'>
|
<FlexColumn as='ul' gap='16px' alignmentX='flex-start'>
|
||||||
<FlexRow as='li' gap='12px' alignmentY='flex-start'>
|
{
|
||||||
|
content.map((paragraph, index) => {
|
||||||
|
return (
|
||||||
|
<FlexRow key={`motivation-${index}`} as='li' gap='12px' alignmentY='flex-start'>
|
||||||
<Svg src={cubeIcon} width='14px' height='14px' margin='4px 0 0 0'
|
<Svg src={cubeIcon} width='14px' height='14px' margin='4px 0 0 0'
|
||||||
backgroundColor={theme.colors.green}/>
|
backgroundColor={theme.colors.green}/>
|
||||||
<Body as='p' maxWidth='224px'>
|
<Body as='p'>
|
||||||
Explore interesting solutions to problems using AI
|
{paragraph}
|
||||||
</Body>
|
|
||||||
</FlexRow>
|
|
||||||
<FlexRow as='li' gap='12px' alignmentY='flex-start'>
|
|
||||||
<Svg src={cubeIcon} width='14px' height='14px' margin='4px 0 0 0'
|
|
||||||
backgroundColor={theme.colors.green}/>
|
|
||||||
<Body as='p' maxWidth='224px'>
|
|
||||||
Train by solving our challenges
|
|
||||||
</Body>
|
|
||||||
</FlexRow>
|
|
||||||
<FlexRow as='li' gap='12px' alignmentY='flex-start'>
|
|
||||||
<Svg src={cubeIcon} width='14px' height='14px' margin='4px 0 0 0'
|
|
||||||
backgroundColor={theme.colors.green}/>
|
|
||||||
<Body as='p' maxWidth='224px'>
|
|
||||||
Participate in competitions with commercial challenges
|
|
||||||
</Body>
|
</Body>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
}
|
||||||
</FlexColumn>
|
</FlexColumn>
|
||||||
</FlexColumn>
|
</FlexColumn>
|
||||||
);
|
);
|
||||||
|
@ -9,7 +9,8 @@ const _renderChallenges = (pageNr, challenges) => {
|
|||||||
<MiniChallenge key={`challenge-${index}`} title={challenge.title} type={challenge.type}
|
<MiniChallenge key={`challenge-${index}`} title={challenge.title} type={challenge.type}
|
||||||
description={challenge.description} metric={challenge.mainMetric}
|
description={challenge.description} metric={challenge.mainMetric}
|
||||||
bestScore={challenge.bestScore} baseline={challenge.baseline}
|
bestScore={challenge.bestScore} baseline={challenge.baseline}
|
||||||
prize={challenge.prize} deadline={challenge.deadline}/>
|
prize={challenge.prize} deadline={challenge.deadline}
|
||||||
|
name={challenge.name}/>
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
11
src/pages/Challenge.js
Normal file
11
src/pages/Challenge.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const Challenge = () => {
|
||||||
|
return (
|
||||||
|
<p>
|
||||||
|
siema
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Challenge;
|
451
src/prototypeData/challenges.js
vendored
451
src/prototypeData/challenges.js
vendored
@ -1,451 +0,0 @@
|
|||||||
const challenges = [
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 1',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 2',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 3',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 4',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 5',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 6',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 7',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 8',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 9',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 10',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 11',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 1',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 2',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 3',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 4',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 5',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 6',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 7',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 8',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 9',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 10',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 11',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Challenging America geo prediction',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 1',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 2',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 3',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 4',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 5',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 6',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 7',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '2 hours',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 8',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '5000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 9',
|
|
||||||
describe: 'Guess publication location for a piece of text',
|
|
||||||
type: 'text',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '60%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 10',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'image',
|
|
||||||
metric: 'Haversine',
|
|
||||||
bestScore: '90%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Example 11',
|
|
||||||
describe: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis nunc odio,
|
|
||||||
ut lacinia mi vestibulum eget. Donec non tellus lorem. Aliquam maximus semper accumsan.`,
|
|
||||||
type: 'tabular',
|
|
||||||
metric: 'RMSE',
|
|
||||||
bestScore: '79%',
|
|
||||||
baseline: '55%',
|
|
||||||
prize: '150000 PLN',
|
|
||||||
timeLeft: '6 days',
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
export default challenges;
|
|
@ -1,4 +1,6 @@
|
|||||||
const ELEMENTS_PER_PAGE = 12;
|
const ELEMENTS_PER_PAGE = 12;
|
||||||
const API = 'https://gonito.net/api';
|
const API = 'https://gonito.net/api';
|
||||||
|
const CHALLENGES_PAGE = '/challenges';
|
||||||
|
const CHALLENGE_PAGE = '/challenge';
|
||||||
|
|
||||||
export {ELEMENTS_PER_PAGE, API};
|
export {ELEMENTS_PER_PAGE, API, CHALLENGES_PAGE, CHALLENGE_PAGE};
|
Loading…
Reference in New Issue
Block a user