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
Binary file added public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logoFP.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logoVA.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/t2m_despair_map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { BlogPosts } from '@/components/posts'

export const metadata = {
title: 'Blog',
description: 'Read my blog.',
title: 'Posts',
description: 'Read my posts.',
}

export default function Page() {
return (
<section>
<h1 className="max-w-6xl mx-auto px-6 mt-8 py-12 font-semibold text-2xl tracking-tighter">My News</h1>
<h1 className="max-w-6xl mx-auto px-6 mt-8 py-12 font-semibold text-2xl tracking-tighter">My Posts</h1>
<BlogPosts />
</section>
)
Expand Down
1 change: 1 addition & 0 deletions src/app/blog/posts/spaces-vs-tabs.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{/* Taken from https://github.com/vercel/examples/tree/main/solutions/blog MIT License */}
---
title: 'Spaces vs. Tabs: The Indentation Debate Continues'
publishedAt: '2024-04-08'
Expand Down
1 change: 1 addition & 0 deletions src/app/blog/posts/static-typing.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{/* Taken from https://github.com/vercel/examples/tree/main/solutions/blog MIT License */}
---
title: 'The Power of Static Typing in Programming'
publishedAt: '2024-04-07'
Expand Down
1 change: 1 addition & 0 deletions src/app/blog/posts/vim.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{/* Taken from https://github.com/vercel/examples/tree/main/solutions/blog MIT License */}
---
title: 'Embracing Vim: The Unsung Hero of Code Editors'
publishedAt: '2024-04-09'
Expand Down
10 changes: 0 additions & 10 deletions src/app/contact/page.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,2 @@
# Contact

# Embedded Video

<iframe
width="1280"
height="920"
src="https://eerie-project.eu/wp-content/uploads/2025/01/index.html"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
></iframe>
13 changes: 6 additions & 7 deletions src/app/project/about/page.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# <WP number={3}> Task T1.2: Observations and Data Products in the Ocean </WP>
[lead: VLIZ; contributions: UHAM]
# <WP number={1}> Why this?</WP>

- **Objective**: Identify transport pathways of heat and carbon and improve the representation of marine heatwaves and their impacts.
- **Approach**: Upscale sparse in-situ ocean measurements and satellite data and use machine learning algorithms to harmonize global temperature and dissolved carbon fields as well as high-resolution coastal air-sea CO2 flux reconstructions.
- **Focus Area**:
1. Meridional heat and carbon transport in the Southern Ocean.
2. Air-sea CO2 exchange.
<br></br>

- Sometimes, you just need to get a research project website online—because you said you would.
- But with other commitments piling up, you end up shipping something quick and just "good enough".
- This template is a small but meaningful upgrade—an easy way to make *"good enough"* look a lot better.
8 changes: 2 additions & 6 deletions src/assets/ProjectFunding.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
const ProjectFunding = () => {
return (
<>
This project (STX-42 – Strategic Technological Expansion for Deep-Space Exploration and Anomalous Phenomena) has
received funding from the United Federation of Planets&apos; Advanced Research and Exploration Initiative under
Starfleet Science Division grant no. 2401-47682; the Vulcan Science Academy under the Interstellar Research
Cooperation Agreement grant numbers 2401-4295, 2401-3109, and 2400-9450, and the Andorian Imperial Science
Consortium under grant numbers 2300.0546 & 2400.0178.
Placeholder for financial supporters.
<br /> <br />
Views and opinions expressed are, however, those of the author(s) only and do not necessarily reflect those of the United Federation of Planets, Starfleet Command, the Vulcan Science Academy, or the Andorian Imperial Science Consortium. Neither granting authority can be held responsible for them.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</>
);
};
Expand Down
18 changes: 9 additions & 9 deletions src/assets/contacts.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AddressData, ContactData } from '@/components/FooterTypes';

export const contactInfo = {
copyright: "Max-Planck-Gesellschaft",
copyright: "Lazaro Alonso",
contact: {
address: {
company: "Max-Planck Institute for Biogeochemistry",
Expand All @@ -15,16 +15,16 @@ export const contactInfo = {
data: {
contacts: [
{
name: "Max-Planck",
position: "Research Director",
email: "max.planck@mpg.de"
},
{
name: "Alice",
email: "alice.doe@mpg.de"
name: "Lazaro Alonso",
position: "Researcher",
email: "lalonso@bgc-jena.mpg.de"
},
// {
// name: "Alice",
// email: "alice.doe@mpg.de"
// },
],
mainEmail: "contact@mpg.de"
// mainEmail: "contact@mpg.de"
} as ContactData
}
}
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Footer = ({ className = "" }: FooterProps) => {
<div className="max-w-6xl mx-auto px-6 py-8 space-y-8">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<Address address={contactInfo.contact.address} />
<Contacts data={contactInfo.contact.data} subtitle="Project Office"/>
<Contacts data={contactInfo.contact.data} subtitle="Contact"/>
<Socials socialLinks={socialLinks} />
</div>

Expand Down