From a7a1069bc1865a07d2e5af8b6bab8aa657fff233 Mon Sep 17 00:00:00 2001 From: MIGHTY1o1 Date: Mon, 4 Nov 2024 06:00:15 +0530 Subject: [PATCH 1/2] add partners page --- src/app/(pages)/partners/page.jsx | 121 ++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 src/app/(pages)/partners/page.jsx diff --git a/src/app/(pages)/partners/page.jsx b/src/app/(pages)/partners/page.jsx new file mode 100644 index 0000000..1f8899c --- /dev/null +++ b/src/app/(pages)/partners/page.jsx @@ -0,0 +1,121 @@ +"use client"; +import React from 'react'; +import { motion } from "framer-motion"; + +const partnersData = [ + { + category: "Partners", + title: "Arize, Vertex AI API: Evaluation workflows to accelerate generative app development and AI ROI", + author: "Gabe Barcelos", + readTime: "9-minute read", + }, + { + category: "Partners", + title: "Accelerate retail media success with EPAM and Google Cloud", + author: "Diana Abebrese", + readTime: "7-minute read", + }, + { + category: "Databases", + title: "Unlocking the power of Spanner: 10 partners to revolutionize your data", + author: "Nitin Sagar", + readTime: "8-minute read", + }, + { + category: "AI & Machine Learning", + title: "Announcing Anthropic’s upgraded Claude 3.5 Sonnet on Vertex AI", + author: "Nenshad Bardoliwalla", + readTime: "5-minute read", + }, + { + category: "Partners", + title: "Accelerating partner growth with Earnings Hub and new AI resources", + author: "Colleen Kapase", + readTime: "5-minute read", + }, + { + category: "Partners", + title: "Google Cloud Marketplace private offer enhancements unlock enterprise and AI use cases", + author: "Sakshi Goel", + readTime: "4-minute read", + }, + { + category: "Partners", + title: "AUI’s Apollo offers businesses the next generation of AI agents on Google Cloud", + author: "Zac Maufe", + readTime: "7-minute read", + }, + { + category: "Data Analytics", + title: "Generating synthetic data with BigQuery and Gretel", + author: "Firat Tekiner", + readTime: "7-minute read", + }, + { + category: "Startups", + title: "Helping more AI startups build and go to market with Google Cloud", + author: "James Lee", + readTime: "5-minute read", + }, + { + category: "Data Analytics", + title: "Integrate Oracle EBS insights faster with Google Cloud Cortex Framework", + author: "Frank Zhang", + readTime: "3-minute read", + }, +]; + +const PartnersPage = () => { + return ( +
+ {/* Improved Header Section */} +
+ +

Partners

+

+ Discover partners that can help you innovate faster with Google Cloud products and services. +

+
+
+ + {/* Partners List Section */} +
+
+
+ {partnersData.map((partner, index) => ( + +

{partner.category}

+

{partner.title}

+

{partner.author} • {partner.readTime}

+
+ ))} +
+ +
+
+ + {/* Footer Section */} +
+
+

Follow us • Google Cloud • Google Cloud Products • Privacy • Terms • Help

+

‪English‬

+
+
+
+ ); +}; + +export default PartnersPage; From 719c38c68b3d6be1938bd42f42404d12bc6f6547 Mon Sep 17 00:00:00 2001 From: MIGHTY1o1 Date: Mon, 4 Nov 2024 06:01:32 +0530 Subject: [PATCH 2/2] remove footer --- src/app/(pages)/partners/page.jsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/app/(pages)/partners/page.jsx b/src/app/(pages)/partners/page.jsx index 1f8899c..b6d5f47 100644 --- a/src/app/(pages)/partners/page.jsx +++ b/src/app/(pages)/partners/page.jsx @@ -106,14 +106,6 @@ const PartnersPage = () => { - - {/* Footer Section */} - ); };