diff --git a/public/voy1.png b/public/voy1.png new file mode 100644 index 0000000..3e3d71d Binary files /dev/null and b/public/voy1.png differ diff --git a/public/voy2.jpeg b/public/voy2.jpeg new file mode 100644 index 0000000..b163206 Binary files /dev/null and b/public/voy2.jpeg differ diff --git a/public/voy3.png b/public/voy3.png new file mode 100644 index 0000000..3ae09b4 Binary files /dev/null and b/public/voy3.png differ diff --git a/src/app/(pages)/Voyages/page.jsx b/src/app/(pages)/Voyages/page.jsx new file mode 100644 index 0000000..80f0aeb --- /dev/null +++ b/src/app/(pages)/Voyages/page.jsx @@ -0,0 +1,97 @@ +"use client" +import React from 'react'; +import { BarChart2, Globe } from 'lucide-react'; + +const datasets = [ + { + id: 1, + title: "Tech Trends Over Time", + description: "Explore the rise and fall of different technologies over the last 20 years. This animated infographic lets you visualize how certain programming languages and tech stacks gained popularity.", + mediaUrl: "/voy1.png", + type: "Infographic", + }, + { + id: 2, + title: "Global Internet Usage", + description: "Discover the journey of internet adoption across different continents. This animated visualization highlights internet penetration rates by year.", + mediaUrl: "/voy2.jpeg", + type: "Infographic", + }, + { + id: 3, + title: "Community Engagement Stats", + description: "This infographic shows how community engagement activities, including workshops and hackathons, have increased over time in GDG chapters globally.", + mediaUrl: "/voy3.png", + type: "Infographic", + } +]; + +const DataVoyages = () => { + return ( +
+
+
+

Data Voyages

+

Visualize fascinating datasets related to tech trends, social impact, and community engagement through creative, animated infographics.

+
+ +
+ + {/* Dataset Visualization Section */} +
+ {datasets.map((dataset) => ( +
+
+ +

{dataset.title}

+
+

{dataset.description}

+ {dataset.title} +
+ ))} +
+ + {/* Why Data Visualization Matters Section */} +
+

Why Data Visualization Matters

+

+ Data visualization helps us make sense of large volumes of data by presenting information in an engaging and accessible format. It allows us to see patterns, trends, and insights that might otherwise be hidden in raw numbers. +

+ +
+ + {/* Tools and Resources for Visualization Section */} +
+

Tools and Resources for Visualization

+
+
+

D3.js

+

A powerful JavaScript library for producing dynamic, interactive data visualizations in web browsers.

+
+
+

Tableau

+

A leading platform for data visualization that helps users convert data into dashboards and visual insights.

+
+
+

Chart.js

+

A simple yet flexible JavaScript charting library that allows you to create engaging data visualizations.

+
+
+
+ + {/* Footer Section */} + +
+ ); +}; + +export default DataVoyages;