From 3878672f5ee04a8508d51d00b382fe933aae8a16 Mon Sep 17 00:00:00 2001 From: MIGHTY1o1 Date: Fri, 8 Nov 2024 12:33:22 +0530 Subject: [PATCH] Add featured whitepapers page --- src/app/(pages)/whitepapers/page.jsx | 100 +++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/app/(pages)/whitepapers/page.jsx diff --git a/src/app/(pages)/whitepapers/page.jsx b/src/app/(pages)/whitepapers/page.jsx new file mode 100644 index 0000000..2718bc0 --- /dev/null +++ b/src/app/(pages)/whitepapers/page.jsx @@ -0,0 +1,100 @@ +"use client" +import React from 'react'; + +const whitepapers = [ + { + category: "Featured Whitepapers", + items: [ + { title: "Boston Consulting Group: Any company can become a resilient data champion", description: "Insights from 700 global business leaders reveal the secrets to data maturity." }, + { title: "Deliver software securely", description: "Learn industry standards and best practices to secure every stage in your software supply chain." }, + { title: "Evaluate your cloud migration options", description: "Devise your migration strategy that empowers both the business and IT." }, + { title: "Understand the principles of cost optimization", description: "Discover five ways to reduce overall cloud spend with a cost optimization strategy." }, + { title: "Designing Cloud Teams", description: "How to Build a Better Cloud Center of Excellence." }, + ], + }, + { + category: "AI and ML", + items: [ + { title: "A Platform Approach to Scaling Generative AI in the Enterprise", description: "Explore why AI platforms, not just models, are important for scaling generative AI for enterprises." }, + { title: "Enabling Generative AI Value: Creating An Evaluation Framework for Your Organization", description: "Explore how to develop a framework to evaluate generative AI beyond basic task metrics." }, + { title: "Selecting the right model Customization and Augmentation techniques", description: "Use RAG, fine-tuning, prompt engineering, and other techniques to improve performance." }, + ], + }, + { + category: "Cloud Basics", + items: [ + { title: "Google’s guide to innovation", description: "Learn how Google developed a work culture that fosters creative thinking." }, + { title: "Increasing business value with better IT operations: A guide to SRE", description: "Learn what SRE is and how it can improve IT operations." }, + { title: "SAP on Google Cloud: High availability", description: "Architect SAP systems in Google Cloud for high availability." }, + ], + }, +]; + +const WhitepapersPage = () => { + return ( +
+ {/* Header Section */} +
+
+

Google Cloud Whitepapers

+

Written by Googlers, independent analysts, customers, and partners, these whitepapers explain the technology underlying our products and services or examine topics such as security, architecture, and data governance.

+
+ +
+ + {/* Sidebar and Content */} +
+ {/* Sidebar */} + + + {/* Main Content */} +
+
+ + +
+ + {whitepapers.map((section, index) => ( +
+

{section.category}

+
+ {section.items.map((item, idx) => ( +
+

{item.title}

+

{item.description}

+ +
+ ))} +
+
+ ))} +
+
+
+ ); +}; + +export default WhitepapersPage;