Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
302 changes: 302 additions & 0 deletions public/virtualship-assets/IconsVirtualShip.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/components/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export const Features = () => {
Key Features & Capabilities
</Heading>
<Text fontSize={'lg'}>
The Virtual Ship can be used to simulate and teach the planning, execution and analysis of ocean-based fieldwork
The Virtual Ship can be used to simulate and teach the planning,
execution and analysis of ocean-based fieldwork
</Text>

<SimpleGrid columns={{ base: 1, md: 2, lg: 4 }} spacing={8} my={8}>
Expand Down
18 changes: 11 additions & 7 deletions src/components/hero-banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,19 @@ export const HeroBanner = () => {
</Text>
</Heading>
<Text fontSize={'lg'}>
<strong>VirtualShipParcels</strong> provides a framework to plan and conduct a virtual research expedition, receiving measurements as if they were coming from actual oceanographic instruments.
<strong>VirtualShipParcels</strong> provides a framework to plan
and conduct a virtual research expedition, receiving measurements
as if they were coming from actual oceanographic instruments.
</Text>
</Stack>
<Stack flex={1} spacing={{ base: 10, md: 20 }}>
{<Image
src={'/homepage_image.png'}
alt='Rendering of the new Dutch Research Vessel Anna Weber-van Bosse on a sea of data'
objectFit='contain'
></Image>}
{
<Image
src={'/homepage_image.png'}
alt='Rendering of the new Dutch Research Vessel Anna Weber-van Bosse on a sea of data'
objectFit='contain'
></Image>
}

<Stack
spacing={{ base: 4, sm: 6 }}
Expand All @@ -59,7 +63,7 @@ export const HeroBanner = () => {
as={Link}
variant={'outline'}
colorScheme={'blue'}
href='https://virtualship.oceanparcels.org' // TODO fix link after deployment
href='https://virtualship.oceanparcels.org' // TODO fix link after deployment
>
Get Started
</Button>
Expand Down
5 changes: 4 additions & 1 deletion src/data/menu-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ export const menuItems = [
// { label: 'Projects', href: '/#projects' }, TODO uncomment when projects are ready
{ label: 'Funders', href: '/#funders' },
{ label: 'Blog', href: '/blog' },
{ label: 'Documentation', href: 'https://virtualship.oceanparcels.org/en/latest/'}, // TODO: update to new domain after deployment
{
label: 'Documentation',
href: 'https://virtualship.oceanparcels.org/en/latest/',
}, // TODO: update to new domain after deployment
]