diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 254d7ff..2e4ff6b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,9 +1,11 @@ import Intro from '@/components/about/intro'; +import Section1 from '@/components/about/section-1'; export default function About() { return (
+
); } \ No newline at end of file diff --git a/src/components/about/section-1/index.tsx b/src/components/about/section-1/index.tsx new file mode 100644 index 0000000..1671bff --- /dev/null +++ b/src/components/about/section-1/index.tsx @@ -0,0 +1,13 @@ +import dynamic from 'next/dynamic' +const Lines = dynamic(() => import('@/components/lines'), { ssr: false }) + +export default function Section1() { + return ( +
+ +
+

Digital Twins: From Data to Impact

+
The information displayed in the Digital Twins platform has been co-produced by the Barcelona Supercomputing Center (BSC-CNS) in the context of the Spanish project GLORIA, the EU Destination Earth programme (DestinE) and the EU-funded nextGEMS and EERIE projects. These projects and initiatives work on the development of digital representations of the Earth system. The high-resolution simulations are only possible thanks to the computing power of the first pre-exascale supercomputers in Europe, such as MareNostrum 5.
+
+
); +}; \ No newline at end of file