Skip to content

Commit bb54099

Browse files
Merge pull request #7 from OceanParcels/updating-brand-assets
Updating the logo to virtual ship throughout
2 parents c286e8e + b5736fc commit bb54099

File tree

13 files changed

+21
-23
lines changed

13 files changed

+21
-23
lines changed

.imgbotconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"ignoredFiles": ["public/parcels-assets/*", "public/cards/*"],
2+
"ignoredFiles": ["public/virtualship-assets/*", "public/cards/*"],
33
"schedule": "monthly"
44
}
82 KB
Loading
75.2 KB
Loading

src/components/footer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ export const Footer = () => {
6262
<Box>
6363
<ColorModeImage
6464
w={32}
65-
lightSrc={'/parcels-assets/logo-horo.svg'} //TODO: Update to svg in roughly 1h*3w (internal) and 1h*2w external (as was before)
66-
darkSrc={'/parcels-assets/logo-horo_dia.svg'} //TODO: Update to svg in roughly 1h*3w (internal) and 1h*2w external (as was before)
65+
lightSrc={'/virtualship-assets/virtual_ship_logo.png'}
66+
darkSrc={'/virtualship-assets/virtual_ship_logo_inverted.png'}
6767
alt={'parcels logo'}
6868
/>
6969
</Box>

src/components/header.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ export const Header = () => {
7777
>
7878
<ColorModeImage
7979
w={48}
80-
lightSrc={'/parcels-assets/logo-horo.svg'} //TODO: Update to svg in roughly 1h*3w (internal) and 1h*2w external (as was before)
81-
darkSrc={'/parcels-assets/logo-horo_dia.svg'} //TODO: Update to svg in roughly 1h*3w (internal) and 1h*2w external (as was before)
82-
alt={'parcels logo'}
80+
lightSrc={'/virtualship-assets/virtual_ship_logo.png'}
81+
darkSrc={'/virtualship-assets/virtual_ship_logo_inverted.png'}
82+
alt={'virtualshipparcels logo'}
8383
/>
8484
</Stack>
8585
</Flex>

src/components/hero-banner.js

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,23 @@ export const HeroBanner = () => {
3131
zIndex: -1,
3232
}}
3333
>
34-
Parcels
34+
Virtual Ship
3535
</Text>
3636
<br />
3737
<Text as={'span'} color={'blue.400'}>
38-
A highly customisable Lagrangian simulation framework
38+
Explore the ocean with a virtual research vessel
3939
</Text>
4040
</Heading>
4141
<Text fontSize={'lg'}>
42-
<strong>Parcels</strong> provides a set of Python classes and
43-
methods to create customisable particle tracking simulations using
44-
gridded output from (ocean) circulation models.
42+
<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.
4543
</Text>
4644
</Stack>
4745
<Stack flex={1} spacing={{ base: 10, md: 20 }}>
48-
<Image
46+
{/* <Image
4947
src={'/homepage-animation_SH.gif'}
5048
alt='Animation of virtual particles in the global oceans'
5149
objectFit='contain'
52-
></Image>
50+
></Image> */} # TODO add animation
5351

5452
<Stack
5553
spacing={{ base: 4, sm: 6 }}
@@ -61,7 +59,7 @@ export const HeroBanner = () => {
6159
as={Link}
6260
variant={'outline'}
6361
colorScheme={'blue'}
64-
href='https://docs.oceanparcels.org'
62+
href='https://virtualship.oceanparcels.org'
6563
>
6664
Get Started
6765
</Button>

src/components/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const Layout = ({
5656
rel='icon'
5757
type='image/png'
5858
sizes='96x96'
59-
href='/parcels-assets/logo-no-text.svg'
59+
href='/virtualship-assets/virtual_ship_logo_no-text.png'
6060
/>
6161
<link rel='icon' type='image/svg+xml' href='/favicon.svg' />
6262
<link rel='icon' type='image/png' href='/favicon.png' />

src/data/footer-items.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const footerItems = {
33
{ label: 'Blog', href: '/blog' },
44
{
55
label: 'Brand Assets',
6-
href: 'https://github.com/OceanParcels/oceanparcels_website/tree/main/public/parcels-assets',
6+
href: 'https://github.com/OceanParcels/oceanparcels_website/tree/main/public/virtualship-assets',
77
},
88
{ label: 'Accessibility', href: '/accessibility' },
99
],

src/lib/rss-feed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const feed = new Feed({
1515
id: blogUrl,
1616
link: blogUrl,
1717
language: 'en',
18-
image: `${siteUrl}/parcels-assets/logo-no-text.png`,
18+
image: `${siteUrl}/virtualship-assets/virtual_ship_logo_no-text.png`,
1919
favicon: `${siteUrl}/favicon.ico`,
2020
copyright: ${new Date().getFullYear()}, Parcels core developers. Apache 2.0 Licensed`,
2121
feedLinks: {

src/pages/accessibility.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Accessibility = () => {
77
<Layout
88
title={'Accessibility'}
99
card={
10-
'https://raw.githubusercontent.com/OceanParcels/oceanparcels_website/main/public/parcels-assets/logo-no-text.png'
10+
'https://raw.githubusercontent.com/OceanParcels/oceanparcels_website/main/public/virtualship-assets/virtual_ship_logo_no-text.png'
1111
}
1212
url={`/accessibility`}
1313
>

0 commit comments

Comments
 (0)