From 891f282aa66fb3697a551c619e9a25f730f5c5df Mon Sep 17 00:00:00 2001 From: MIGHTY1o1 Date: Wed, 30 Oct 2024 20:25:20 +0530 Subject: [PATCH] add community devfest page --- src/app/(pages)/devfest/page.jsx | 145 +++++++++++++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 src/app/(pages)/devfest/page.jsx diff --git a/src/app/(pages)/devfest/page.jsx b/src/app/(pages)/devfest/page.jsx new file mode 100644 index 0000000..1b10089 --- /dev/null +++ b/src/app/(pages)/devfest/page.jsx @@ -0,0 +1,145 @@ +"use client" +import React from 'react'; +import { Search, Video, Users, Award } from 'lucide-react'; + +// DevFest Page Component +const DevFestPage = () => { + return ( +
+ {/* Hero Section */} +
+
+
+
+
+
+

+ Join us for DevFest 2024 +

+

+ DevFest 2024 is here, and this year's focus on Responsible AI couldn't be more timely. Join us as we explore the importance of developing technologies that enhance productivity without causing harm. Let's shape a future where AI serves humanity responsibly. +

+ + Find a DevFest Near You + +
+
+ + {/* What to Expect Section */} +
+

What to Expect at a DevFest

+
+
+

Technical Content

+

+ Worldwide events hosted by the Google Developer Groups community, featuring Googlers and Google Developer Experts. +

+
+
+

Workshops

+

+ Full-day workshops, hands-on experiences, hacking and debugging events, all centered on your favorite Google technologies. +

+
+
+

Networking

+

+ Panel discussions, Q&A sessions, meetup groups, project showcases, coding workshops, mentorship sessions, and more. +

+
+
+
+ + {/* Videos Section */} +
+

Watch Videos from DevFest 2023

+
+ {videos.map((video, index) => ( +
+
+
+

{video.title}

+

{video.description}

+
+ {video.tags.map((tag, tagIndex) => ( + {tag} + ))} +
+
+ ))} +
+
+ + {/* Testimonials Section */} +
+

What People Are Saying About DevFest

+
+ {testimonials.map((testimonial, index) => ( +
+
+ +
+

"{testimonial.quote}"

+

{testimonial.name}, {testimonial.title}

+
+ ))} +
+
+ + {/* Statistics Section */} +
+

DevFest 2023 Highlights

+
+
+ 650K+ + Devs Reached +
+
+ 670+ + Events Worldwide +
+
+
+ + {/* Get Started Section */} +
+

Learn, Explore, Connect

+
+ {resources.map((resource, index) => ( +
+

{resource.title}

+

{resource.description}

+ Get Started +
+ ))} +
+
+
+ ); +}; + +const videos = [ + { title: "Prototyping apps with Project IDX, Firebase extensions and the PaLM API", date: "November 2023", description: "Ali Satter and Vikas Anand discuss Generative AI and LLMs, and how you can use Project IDX to create apps.", tags: ["Firebase", "AI"] }, + { title: "The LLM Landscape", date: "October 2023", description: "Mark Ryan gives an overview of the LLM landscape, major developments, and upcoming changes.", tags: ["AI", "Cloud"] }, + { title: "MLOps x Generative AI best practices", date: "October 2023", description: "Divya Jain explains why MLOps is important, its limitations, and best practices for Generative AI.", tags: ["AI", "MLOps"] } +]; + +const testimonials = [ + { quote: "DevFest is a fantastic opportunity to meet some amazing developers and find out the latest news about how to use Google technologies.", name: "Barry Pollard", title: "Web Performance Developer Advocate" }, + { quote: "Some awesome new features were launched for building solutions on the Google Workspace Platform. DevFest is a fantastic opportunity to learn all about them!", name: "Chanel Greco", title: "Google Workspace Developer Advocate" }, + { quote: "DevFest is an amazing way to learn about the best developer tools that Google has to offer. It is also a great way to connect and network with fellow professionals.", name: "Prakhar Srivastav", title: "Software Engineer" }, +]; + +const resources = [ + { title: "Mobile", description: "Develop for a range of audiences and form factors." }, + { title: "Web", description: "Create fast, secure sites and apps for the open web." }, + { title: "AI", description: "Bring the power of machine learning to apps and workflows." }, + { title: "Cloud", description: "Simplify and scale end-to-end development." } +]; + +export default DevFestPage; \ No newline at end of file