From da10c10f3bae3e0344b696911f4ece044ce3743f Mon Sep 17 00:00:00 2001 From: Md Abdulla Date: Tue, 23 Jun 2026 20:31:29 +0530 Subject: [PATCH 1/6] setup research section and listing page --- .astro/content.d.ts | 10 ++- src/content.config.ts | 20 +++++- src/content/research/future-trends-report.md | 23 ++++++ .../hidden-cost-of-manual-processes.md | 23 ++++++ .../research/why-we-built-this-product.md | 27 +++++++ src/pages/research/index.astro | 70 +++++++++++++++++++ 6 files changed, 171 insertions(+), 2 deletions(-) create mode 100644 src/content/research/future-trends-report.md create mode 100644 src/content/research/hidden-cost-of-manual-processes.md create mode 100644 src/content/research/why-we-built-this-product.md create mode 100644 src/pages/research/index.astro diff --git a/.astro/content.d.ts b/.astro/content.d.ts index 6f3dfe3..8379d03 100644 --- a/.astro/content.d.ts +++ b/.astro/content.d.ts @@ -147,6 +147,14 @@ declare module 'astro:content' { rendered?: RenderedContent; filePath?: string; }>; +"research": Record; + rendered?: RenderedContent; + filePath?: string; +}>; }; @@ -177,6 +185,6 @@ declare module 'astro:content' { LiveContentConfig['collections'][C]['loader'] >; - export type ContentConfig = typeof import("../src/content.config.js"); + export type ContentConfig = typeof import("./../src/content.config.js"); export type LiveContentConfig = never; } diff --git a/src/content.config.ts b/src/content.config.ts index 4ee4ed7..1cbd2ef 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -32,7 +32,25 @@ const blog = defineCollection({ }) }); +const research = defineCollection({ + loader: glob({ + pattern: "**/*.{md,mdx}", + base: "./src/content/research" + }), + schema: z.object({ + title: z.string(), + description: z.string(), + author: z.string(), + date: z.date(), + tags: z.array(z.string()).default([]), + category: z.string(), + featured: z.boolean().default(false), + image: z.string().optional() + }) +}); + export const collections = { articles, - blog + blog, + research }; diff --git a/src/content/research/future-trends-report.md b/src/content/research/future-trends-report.md new file mode 100644 index 0000000..ac0c3c4 --- /dev/null +++ b/src/content/research/future-trends-report.md @@ -0,0 +1,23 @@ +--- +title: "Future Trends Report" +description: "Market growth and AI adoption trends." +author: "Recursive Zero" +date: 2025-08-17 +tags: + - ai + - future +category: "AI & Technology" +featured: false +--- + +## Introduction + +Placeholder content. + +## Market Growth + +Placeholder content. + +## AI Adoption + +Placeholder content. \ No newline at end of file diff --git a/src/content/research/hidden-cost-of-manual-processes.md b/src/content/research/hidden-cost-of-manual-processes.md new file mode 100644 index 0000000..9d7ebae --- /dev/null +++ b/src/content/research/hidden-cost-of-manual-processes.md @@ -0,0 +1,23 @@ +--- +title: "Hidden Cost of Manual Processes" +description: "Understanding inefficiencies caused by manual workflows." +author: "Recursive Zero" +date: 2025-08-16 +tags: + - research + - operations +category: "Case Studies" +featured: false +--- + +## Introduction + +Placeholder content. + +## Time Loss + +Placeholder content. + +## Industry Statistics + +Placeholder content. \ No newline at end of file diff --git a/src/content/research/why-we-built-this-product.md b/src/content/research/why-we-built-this-product.md new file mode 100644 index 0000000..7cef956 --- /dev/null +++ b/src/content/research/why-we-built-this-product.md @@ -0,0 +1,27 @@ +--- +title: "Why We Built This Product" +description: "Research behind our product vision." +author: "Recursive Zero" +date: 2025-08-15 +tags: + - research + - product +category: "Product Vision" +featured: true +--- + +## Introduction + +Placeholder content. + +## Industry Problem + +Placeholder content. + +## Research Findings + +Placeholder content. + +## Our Vision + +Placeholder content. \ No newline at end of file diff --git a/src/pages/research/index.astro b/src/pages/research/index.astro new file mode 100644 index 0000000..e0a844a --- /dev/null +++ b/src/pages/research/index.astro @@ -0,0 +1,70 @@ +--- +import BlogCard from "@/components/BlogCard.astro"; +import BaseLayout from "@/layouts/BaseLayout"; + +import { getCollection } from "astro:content"; + +const posts = await getCollection("research"); + +/* ALL UNIQUE TAGS */ +const allTags = [...new Set(posts.flatMap((post) => post.data.tags || []))]; +--- + + +
+ +
+
+ +

Research Library

+ + +

Research & White Papers

+ + +

+ Explore industry research, market analysis, case studies, AI trends, sustainability insights and product vision papers. +

+ + +
+ { + allTags.slice(0, 3).map((tag) => ( + + #{tag} + + )) + } + + + + More Tags → + +
+
+ + +
+ { + posts.map((post) => ( + + )) + } +
+
+
+
From 4bc46a50ad5dde522d9522437e2ed1d9e06bb159 Mon Sep 17 00:00:00 2001 From: Md Abdulla Date: Wed, 24 Jun 2026 21:43:15 +0530 Subject: [PATCH 2/6] add reasearch detail page and related articles --- src/content/research/future-trends-report.md | 2 +- .../research/why-we-built-this-product.md | 2 +- src/data/navLinks.json | 5 +- src/pages/research/[slug].astro | 136 +++++++++++++++++ src/pages/research/index.astro | 138 ++++++++++++------ 5 files changed, 237 insertions(+), 46 deletions(-) create mode 100644 src/pages/research/[slug].astro diff --git a/src/content/research/future-trends-report.md b/src/content/research/future-trends-report.md index ac0c3c4..ea40d6e 100644 --- a/src/content/research/future-trends-report.md +++ b/src/content/research/future-trends-report.md @@ -7,7 +7,7 @@ tags: - ai - future category: "AI & Technology" -featured: false +featured: true --- ## Introduction diff --git a/src/content/research/why-we-built-this-product.md b/src/content/research/why-we-built-this-product.md index 7cef956..8997745 100644 --- a/src/content/research/why-we-built-this-product.md +++ b/src/content/research/why-we-built-this-product.md @@ -7,7 +7,7 @@ tags: - research - product category: "Product Vision" -featured: true +featured: false --- ## Introduction diff --git a/src/data/navLinks.json b/src/data/navLinks.json index b80b865..55467f7 100644 --- a/src/data/navLinks.json +++ b/src/data/navLinks.json @@ -23,5 +23,6 @@ "name": "Work", "href": "/work", "isActive": true - } -] \ No newline at end of file + }, + { "name": "Research", "href": "/research", "isActive": true } +] diff --git a/src/pages/research/[slug].astro b/src/pages/research/[slug].astro new file mode 100644 index 0000000..aa0e9fc --- /dev/null +++ b/src/pages/research/[slug].astro @@ -0,0 +1,136 @@ +--- +import CalendarIcon from "@/assets/icons/calendar.svg"; +import ProfileIcon from "@/assets/icons/profile.svg"; +import ClockIcon from "@/assets/icons/clock.svg"; +import MarkdownContent from "@/components/MarkdownContent.astro"; +import BaseLayout from "@/layouts/BaseLayout"; +import BlogCard from "@/components/BlogCard.astro"; +import { type CollectionEntry, getCollection, render } from "astro:content"; + +export const prerender = true; + +export async function getStaticPaths() { + const posts = await getCollection("research"); + + return posts.map((blog) => ({ + params: { slug: blog.id }, + props: blog + })); +} + +type Props = CollectionEntry<"research">; + +const blog = Astro.props; + +// BLOG NOT FOUND REDIRECT +if (!Astro.props?.id) { + return Astro.redirect("/research"); +} + +const { Content } = await render(blog); + +const { title, description, date, author, image, tags } = blog.data; +const allResearch = await getCollection("research"); + +const relatedPosts = allResearch + .filter((post) => post.id !== blog.id) + .slice(0, 3); +const readingTime = Math.ceil((blog.body?.split(/\s+/).length || 0) / 200); + +if (!Content) { + throw new Error(`Content could not be rendered for blog: ${blog.id}`); +} +--- + + +
+

{title}

+ {description &&

{description}

} +
+ +
+ { + author && ( + + + + + + {author} + + ) + } + + { + date && ( + + + + + + + + ) + } + {readingTime && ⏱️ {readingTime} min read} +
+ + + { + tags?.length > 0 && ( +
+ {tags.map((tag: string) => ( + + #{tag} + + ))} +
+ ) + } +
+ + +
+
+ +
+ +
+
+
+
+ { + relatedPosts.length > 0 && ( +
+

+ Related Research Articles +

+ +
+ { + relatedPosts.map((post) => ( + + )) + } +
+
+ ) +} + +
+
diff --git a/src/pages/research/index.astro b/src/pages/research/index.astro index e0a844a..05f40ee 100644 --- a/src/pages/research/index.astro +++ b/src/pages/research/index.astro @@ -6,65 +6,119 @@ import { getCollection } from "astro:content"; const posts = await getCollection("research"); -/* ALL UNIQUE TAGS */ -const allTags = [...new Set(posts.flatMap((post) => post.data.tags || []))]; +const categories = [ + ...new Set(posts.map((post) => post.data.category).filter(Boolean)) +]; + +const selectedCategory = Astro.url.searchParams.get("category"); + +const filteredPosts = selectedCategory + ? posts.filter((post) => post.data.category === selectedCategory) + : posts; + +const featuredPost = !selectedCategory + ? posts.find((post) => post.data.featured) + : null; + +const gridPosts = selectedCategory + ? filteredPosts + : filteredPosts.filter((post) => !post.data.featured); ---
-
+
- -

Research Library

+

+ Research Library +

- -

Research & White Papers

+

+ Research & White Papers +

-

- Explore industry research, market analysis, case studies, AI trends, sustainability insights and product vision papers. + Explore industry research, market analysis, case studies, AI trends, + sustainability insights and product vision papers.

+
+ + + - -
+ + { + featuredPost && ( +
+

Featured Research

+ + +
+ ) + } + + +
+
{ - allTags.slice(0, 3).map((tag) => ( - - #{tag} - + gridPosts.map((post) => ( + )) } - - - - More Tags → -
-
- -
{ - posts.map((post) => ( - - )) + gridPosts.length === 0 && ( +

+ No research articles found in this category. +

+ ) } -
+
-
+ \ No newline at end of file From bd5d93ba4caa55729078fe3b087d22a253205f3d Mon Sep 17 00:00:00 2001 From: Md Abdulla Date: Wed, 24 Jun 2026 22:09:38 +0530 Subject: [PATCH 3/6] solve warnings --- src/pages/research/[slug].astro | 1 - src/pages/research/index.astro | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/research/[slug].astro b/src/pages/research/[slug].astro index aa0e9fc..486009e 100644 --- a/src/pages/research/[slug].astro +++ b/src/pages/research/[slug].astro @@ -1,7 +1,6 @@ --- import CalendarIcon from "@/assets/icons/calendar.svg"; import ProfileIcon from "@/assets/icons/profile.svg"; -import ClockIcon from "@/assets/icons/clock.svg"; import MarkdownContent from "@/components/MarkdownContent.astro"; import BaseLayout from "@/layouts/BaseLayout"; import BlogCard from "@/components/BlogCard.astro"; diff --git a/src/pages/research/index.astro b/src/pages/research/index.astro index 05f40ee..3ce08e0 100644 --- a/src/pages/research/index.astro +++ b/src/pages/research/index.astro @@ -6,9 +6,9 @@ import { getCollection } from "astro:content"; const posts = await getCollection("research"); -const categories = [ - ...new Set(posts.map((post) => post.data.category).filter(Boolean)) -]; +// const categories = [ +// ...new Set(posts.map((post) => post.data.category).filter(Boolean)) +// ]; const selectedCategory = Astro.url.searchParams.get("category"); From 61047eeb54214443aa5a02ae81dc9c6e82929ce4 Mon Sep 17 00:00:00 2001 From: Md Abdulla Date: Thu, 25 Jun 2026 21:48:59 +0530 Subject: [PATCH 4/6] add reusable research components and enchance research content --- src/components/research/CalloutBox.astro | 16 ++ src/components/research/DataCard.astro | 27 +++ .../research/GraphPlaceholder.astro | 25 +++ src/components/research/ResearchQuote.astro | 22 +++ src/components/research/StatisticBlock.astro | 18 ++ src/components/research/Timeline.astro | 42 +++++ src/content/research/future-trends-report.md | 23 --- src/content/research/future-trends-report.mdx | 169 ++++++++++++++++++ 8 files changed, 319 insertions(+), 23 deletions(-) create mode 100644 src/components/research/CalloutBox.astro create mode 100644 src/components/research/DataCard.astro create mode 100644 src/components/research/GraphPlaceholder.astro create mode 100644 src/components/research/ResearchQuote.astro create mode 100644 src/components/research/StatisticBlock.astro create mode 100644 src/components/research/Timeline.astro delete mode 100644 src/content/research/future-trends-report.md create mode 100644 src/content/research/future-trends-report.mdx diff --git a/src/components/research/CalloutBox.astro b/src/components/research/CalloutBox.astro new file mode 100644 index 0000000..18007c5 --- /dev/null +++ b/src/components/research/CalloutBox.astro @@ -0,0 +1,16 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- +
+

+ {title} +

+ +
+ +
+
\ No newline at end of file diff --git a/src/components/research/DataCard.astro b/src/components/research/DataCard.astro new file mode 100644 index 0000000..4c2476d --- /dev/null +++ b/src/components/research/DataCard.astro @@ -0,0 +1,27 @@ +--- +interface Props { + title: string; + value: string; + description?: string; +} + +const { title, value, description } = Astro.props; +--- + +
+

+ {title} +

+ +

+ {value} +

+ + { + description && ( +

+ {description} +

+ ) + } +
\ No newline at end of file diff --git a/src/components/research/GraphPlaceholder.astro b/src/components/research/GraphPlaceholder.astro new file mode 100644 index 0000000..3896f31 --- /dev/null +++ b/src/components/research/GraphPlaceholder.astro @@ -0,0 +1,25 @@ +--- +interface Props { + title: string; +} + +const { title } = Astro.props; +--- + +
+

+ {title} +

+ + + +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/src/components/research/ResearchQuote.astro b/src/components/research/ResearchQuote.astro new file mode 100644 index 0000000..5501202 --- /dev/null +++ b/src/components/research/ResearchQuote.astro @@ -0,0 +1,22 @@ +--- +interface Props { + quote: string; + author?: string; +} + +const { quote, author } = Astro.props; +--- + +
+

+ “{quote}” +

+ + { + author && ( +
+ — {author} +
+ ) + } +
\ No newline at end of file diff --git a/src/components/research/StatisticBlock.astro b/src/components/research/StatisticBlock.astro new file mode 100644 index 0000000..6b9bb89 --- /dev/null +++ b/src/components/research/StatisticBlock.astro @@ -0,0 +1,18 @@ +--- +interface Props { + value: string; + label: string; +} + +const { value, label } = Astro.props; +--- + +
+

+ {value} +

+ +

+ {label} +

+
\ No newline at end of file diff --git a/src/components/research/Timeline.astro b/src/components/research/Timeline.astro new file mode 100644 index 0000000..95f4cf2 --- /dev/null +++ b/src/components/research/Timeline.astro @@ -0,0 +1,42 @@ +--- +interface Item { + year: string; + title: string; +} + +interface Props { + items: Item[]; +} + +const { items } = Astro.props; +--- + +
+ { + items.map((item, index) => ( +
+ +
+
+ + { + index !== items.length - 1 && ( +
+ ) + } +
+ + +
+

+ {item.year} +

+ +

+ {item.title} +

+
+
+ )) + } +
\ No newline at end of file diff --git a/src/content/research/future-trends-report.md b/src/content/research/future-trends-report.md deleted file mode 100644 index ea40d6e..0000000 --- a/src/content/research/future-trends-report.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Future Trends Report" -description: "Market growth and AI adoption trends." -author: "Recursive Zero" -date: 2025-08-17 -tags: - - ai - - future -category: "AI & Technology" -featured: true ---- - -## Introduction - -Placeholder content. - -## Market Growth - -Placeholder content. - -## AI Adoption - -Placeholder content. \ No newline at end of file diff --git a/src/content/research/future-trends-report.mdx b/src/content/research/future-trends-report.mdx new file mode 100644 index 0000000..a6524f1 --- /dev/null +++ b/src/content/research/future-trends-report.mdx @@ -0,0 +1,169 @@ +--- +title: "Future Trends Report" +description: "Market growth and AI adoption trends." +author: "Recursive Zero" +date: 2025-08-17 +# tags: +# - ai +# - future +category: "AI & Technology" +featured: true +--- +import StatisticBlock from "@/components/research/StatisticBlock.astro"; +import ResearchQuote from "@/components/research/ResearchQuote.astro"; +import DataCard from "@/components/research/DataCard.astro"; +import CalloutBox from "@/components/research/CalloutBox.astro"; +import Timeline from "@/components/research/Timeline.astro"; +import GraphPlaceholder from "@/components/research/GraphPlaceholder.astro"; + +## Introduction + +Artificial Intelligence is rapidly transforming industries across the globe. Businesses are increasingly investing in automation, data-driven decision making, and intelligent software to improve productivity and reduce operational costs. From manufacturing and healthcare to retail and logistics, AI is becoming a key competitive advantage. + +The manufacturing sector, particularly textiles and supply chain management, is experiencing significant digital transformation. Organizations are adopting machine learning, computer vision, and predictive analytics to streamline operations and improve product quality. + +This report explores the current state of AI adoption, market growth, emerging trends, and the opportunities that businesses can leverage over the next decade. + +--- + +## Current Industry Landscape + +Manufacturing industries are under constant pressure to reduce costs while improving efficiency and sustainability. Traditional manual processes often create delays, increase operational expenses, and introduce unnecessary errors into production workflows. + +Digital transformation initiatives have accelerated over the past few years. Organizations are replacing paper-based systems with cloud platforms, integrating IoT devices for real-time monitoring, and using AI models to automate repetitive tasks. + +Despite these improvements, many businesses still rely on outdated systems that limit visibility into production, inventory, and customer demand. This creates opportunities for intelligent software solutions capable of improving operational efficiency. + +--- + +## Market Growth + + +The global AI market continues to grow at an impressive rate. Organizations across multiple industries are increasing investments in automation technologies, predictive analytics, and intelligent decision-support systems. + +Several factors are driving this growth: + +* Increasing availability of cloud computing +* Lower infrastructure costs +* Growth in enterprise data +* Improvements in machine learning algorithms +* Rising demand for operational efficiency + +Small and medium-sized businesses are also adopting AI solutions because modern cloud platforms make advanced technologies more accessible than ever before. + +--- + +## AI Adoption in Manufacturing + + + +Manufacturing companies are using AI across multiple stages of production. + +Common applications include: + +* Predictive maintenance +* Quality inspection using computer vision +* Inventory forecasting +* Production scheduling +* Demand prediction +* Supply chain optimization + +Computer vision systems can identify product defects faster than manual inspection, while predictive maintenance algorithms reduce unexpected equipment failures. + +As AI models continue improving, businesses are expected to automate larger portions of their production workflows. + +--- + +## Challenges + + +Even though AI adoption is increasing rapidly, organizations must invest in employee training, data quality, and change management to achieve sustainable long-term success. + + +Despite rapid adoption, organizations still face several challenges when implementing AI. + +Some of the most common challenges include: + +* Poor quality data +* Legacy software systems +* High implementation costs +* Lack of skilled professionals +* Data privacy concerns +* Integration complexity + +Successful AI adoption requires not only technology but also organizational readiness, employee training, and continuous improvement. + +--- + +## Opportunities + +AI presents numerous opportunities for organizations willing to modernize their operations. + +Potential benefits include: + +* Faster decision making +* Reduced operational costs +* Improved customer experiences +* Higher productivity +* Better inventory management +* Enhanced product quality + +Businesses that successfully combine AI with domain expertise are likely to gain a significant competitive advantage in their respective industries. + +--- + +## Future Outlook + +Over the next decade, AI will become an essential part of business operations rather than an optional technology investment. + +Organizations will increasingly adopt intelligent assistants, autonomous systems, and predictive analytics platforms capable of supporting complex business decisions. + +Advancements in generative AI, multimodal models, and computer vision will further accelerate digital transformation across industries. + +Companies investing in AI today will be better positioned to respond to future market changes and customer expectations. + +--- + +## Conclusion + +Artificial Intelligence is no longer an emerging technology—it has become a strategic necessity for businesses seeking long-term growth. + +Organizations that invest in digital transformation, modern data infrastructure, and intelligent automation will be better prepared to compete in an increasingly data-driven economy. + +While challenges remain, the opportunities offered by AI significantly outweigh the risks, making it one of the most impactful technologies shaping the future of industry. + +--- + +## Sources & References + +* World Economic Forum +* McKinsey Global Institute +* Deloitte Insights +* Gartner Research +* PwC AI Reports +* OECD Digital Economy Reports From db932326c6662886b32a9130e8524ee434b51a1f Mon Sep 17 00:00:00 2001 From: Md Abdulla Date: Thu, 25 Jun 2026 21:56:45 +0530 Subject: [PATCH 5/6] add reusable research components and enchance research content --- domain.code-workspace | 18 ++--- src/assets/styles/footer.css | 2 +- src/components/research/CalloutBox.astro | 7 +- src/components/research/DataCard.astro | 14 +--- .../research/GraphPlaceholder.astro | 20 ++--- src/components/research/ResearchQuote.astro | 12 +-- src/components/research/StatisticBlock.astro | 4 +- src/components/research/Timeline.astro | 20 ++--- src/content/research/future-trends-report.mdx | 76 ++++++++++--------- .../hidden-cost-of-manual-processes.md | 2 +- .../research/why-we-built-this-product.md | 2 +- src/pages/research/[slug].astro | 49 +++++------- src/pages/research/index.astro | 28 +++---- 13 files changed, 104 insertions(+), 150 deletions(-) diff --git a/domain.code-workspace b/domain.code-workspace index 299da89..660dfb7 100644 --- a/domain.code-workspace +++ b/domain.code-workspace @@ -72,9 +72,9 @@ "javascript": "javascriptreact" }, "eslint.options": { - "extensions": [ ".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro" ] + "extensions": [".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro"] }, - "eslint.validate": [ "mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro" ], + "eslint.validate": ["mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro"], "explorer.compactFolders": false, "explorer.confirmDelete": false, "explorer.confirmDragAndDrop": false, @@ -111,7 +111,7 @@ }, "git.autofetch": true, "git.branchPrefix": "feature/", - "git.branchProtection": [ "develop", "main" ], + "git.branchProtection": ["develop", "main"], "git.branchRandomName.enable": true, "git.confirmSync": false, "git.enableCommitSigning": false, @@ -122,7 +122,7 @@ "js/ts.implicitProjectConfig.checkJs": true, "peacock.affectSideBarBorder": true, "peacock.color": "#010010", - "prettier.documentSelectors": [ "**/*.astro" ], + "prettier.documentSelectors": ["**/*.astro"], "prettier.printWidth": 120, "prettier.quoteProps": "consistent", "prettier.singleQuote": false, @@ -148,13 +148,7 @@ "*.log": "default" }, "zenMode.centerLayout": false, - "cSpell.words": [ - "Boisu", - "brandvault", - "Poorna", - "Socie", - "withastro" - ], + "cSpell.words": ["Boisu", "brandvault", "Poorna", "Socie", "withastro"], "workbench.editor.limit.excludeDirty": true, "workbench.colorCustomizations": { "activityBar.activeBackground": "#040043", @@ -177,6 +171,6 @@ "titleBar.inactiveForeground": "#e7e7e799", "tab.activeBorder": "#040043" }, - "folder-color.pathColors": [ ] + "folder-color.pathColors": [] } } diff --git a/src/assets/styles/footer.css b/src/assets/styles/footer.css index 21fa09e..f103a52 100644 --- a/src/assets/styles/footer.css +++ b/src/assets/styles/footer.css @@ -9,4 +9,4 @@ .footer__nav--item { @apply underline underline-offset-2 hover:text-blue-600 dark:text-sky-500 dark:hover:text-blue-600; -} \ No newline at end of file +} diff --git a/src/components/research/CalloutBox.astro b/src/components/research/CalloutBox.astro index 18007c5..996099b 100644 --- a/src/components/research/CalloutBox.astro +++ b/src/components/research/CalloutBox.astro @@ -5,12 +5,13 @@ interface Props { const { title } = Astro.props; --- -
+ +

{title}

-
+
-
\ No newline at end of file +
diff --git a/src/components/research/DataCard.astro b/src/components/research/DataCard.astro index 4c2476d..2f804dd 100644 --- a/src/components/research/DataCard.astro +++ b/src/components/research/DataCard.astro @@ -8,8 +8,8 @@ interface Props { const { title, value, description } = Astro.props; --- -
-

+
+

{title}

@@ -17,11 +17,5 @@ const { title, value, description } = Astro.props; {value}

- { - description && ( -

- {description} -

- ) - } -
\ No newline at end of file + {description &&

{description}

} +

diff --git a/src/components/research/GraphPlaceholder.astro b/src/components/research/GraphPlaceholder.astro index 3896f31..d42dd21 100644 --- a/src/components/research/GraphPlaceholder.astro +++ b/src/components/research/GraphPlaceholder.astro @@ -6,20 +6,16 @@ interface Props { const { title } = Astro.props; --- -
+

{title}

- - -
-
-
-
-
-
+
+
+
+
+
+
+
-
\ No newline at end of file diff --git a/src/components/research/ResearchQuote.astro b/src/components/research/ResearchQuote.astro index 5501202..dddbbae 100644 --- a/src/components/research/ResearchQuote.astro +++ b/src/components/research/ResearchQuote.astro @@ -8,15 +8,9 @@ const { quote, author } = Astro.props; ---
-

+

“{quote}”

- { - author && ( -
- — {author} -
- ) - } -
\ No newline at end of file + {author &&
— {author}
} + diff --git a/src/components/research/StatisticBlock.astro b/src/components/research/StatisticBlock.astro index 6b9bb89..93b0d58 100644 --- a/src/components/research/StatisticBlock.astro +++ b/src/components/research/StatisticBlock.astro @@ -8,11 +8,11 @@ const { value, label } = Astro.props; ---
-

+

{value}

{label}

-
\ No newline at end of file +
diff --git a/src/components/research/Timeline.astro b/src/components/research/Timeline.astro index 95f4cf2..6913b65 100644 --- a/src/components/research/Timeline.astro +++ b/src/components/research/Timeline.astro @@ -15,28 +15,18 @@ const { items } = Astro.props; { items.map((item, index) => (
-
-
+
- { - index !== items.length - 1 && ( -
- ) - } + {index !== items.length - 1 &&
}
-
-

- {item.year} -

+

{item.year}

-

- {item.title} -

+

{item.title}

)) } -
\ No newline at end of file +
diff --git a/src/content/research/future-trends-report.mdx b/src/content/research/future-trends-report.mdx index a6524f1..6dd4b3a 100644 --- a/src/content/research/future-trends-report.mdx +++ b/src/content/research/future-trends-report.mdx @@ -9,6 +9,7 @@ date: 2025-08-17 category: "AI & Technology" featured: true --- + import StatisticBlock from "@/components/research/StatisticBlock.astro"; import ResearchQuote from "@/components/research/ResearchQuote.astro"; import DataCard from "@/components/research/DataCard.astro"; @@ -37,24 +38,22 @@ Despite these improvements, many businesses still rely on outdated systems that --- ## Market Growth - + + The global AI market continues to grow at an impressive rate. Organizations across multiple industries are increasing investments in automation technologies, predictive analytics, and intelligent decision-support systems. Several factors are driving this growth: -* Increasing availability of cloud computing -* Lower infrastructure costs -* Growth in enterprise data -* Improvements in machine learning algorithms -* Rising demand for operational efficiency +- Increasing availability of cloud computing +- Lower infrastructure costs +- Growth in enterprise data +- Improvements in machine learning algorithms +- Rising demand for operational efficiency Small and medium-sized businesses are also adopting AI solutions because modern cloud platforms make advanced technologies more accessible than ever before. - ---- + +## ## AI Adoption in Manufacturing @@ -68,12 +67,12 @@ Manufacturing companies are using AI across multiple stages of production. Common applications include: -* Predictive maintenance -* Quality inspection using computer vision -* Inventory forecasting -* Production scheduling -* Demand prediction -* Supply chain optimization +- Predictive maintenance +- Quality inspection using computer vision +- Inventory forecasting +- Production scheduling +- Demand prediction +- Supply chain optimization Computer vision systems can identify product defects faster than manual inspection, while predictive maintenance algorithms reduce unexpected equipment failures. @@ -83,20 +82,21 @@ As AI models continue improving, businesses are expected to automate larger port ## Challenges - -Even though AI adoption is increasing rapidly, organizations must invest in employee training, data quality, and change management to achieve sustainable long-term success. + + Even though AI adoption is increasing rapidly, organizations must invest in employee training, data quality, and + change management to achieve sustainable long-term success. Despite rapid adoption, organizations still face several challenges when implementing AI. Some of the most common challenges include: -* Poor quality data -* Legacy software systems -* High implementation costs -* Lack of skilled professionals -* Data privacy concerns -* Integration complexity +- Poor quality data +- Legacy software systems +- High implementation costs +- Lack of skilled professionals +- Data privacy concerns +- Integration complexity Successful AI adoption requires not only technology but also organizational readiness, employee training, and continuous improvement. @@ -108,14 +108,15 @@ AI presents numerous opportunities for organizations willing to modernize their Potential benefits include: -* Faster decision making -* Reduced operational costs -* Improved customer experiences -* Higher productivity -* Better inventory management -* Enhanced product quality +- Faster decision making +- Reduced operational costs +- Improved customer experiences +- Higher productivity +- Better inventory management +- Enhanced product quality Businesses that successfully combine AI with domain expertise are likely to gain a significant competitive advantage in their respective industries. + post.id !== blog.id) - .slice(0, 3); +const relatedPosts = allResearch.filter((post) => post.id !== blog.id).slice(0, 3); const readingTime = Math.ceil((blog.body?.split(/\s+/).length || 0) / 200); if (!Content) { @@ -106,30 +104,25 @@ if (!Content) {
{ - relatedPosts.length > 0 && ( -
-

- Related Research Articles -

- -
- { - relatedPosts.map((post) => ( - - )) - } -
-
- ) -} - + relatedPosts.length > 0 && ( +
+

Related Research Articles

+ +
+ {relatedPosts.map((post) => ( + + ))} +
+
+ ) + } diff --git a/src/pages/research/index.astro b/src/pages/research/index.astro index 3ce08e0..51a922b 100644 --- a/src/pages/research/index.astro +++ b/src/pages/research/index.astro @@ -12,17 +12,11 @@ const posts = await getCollection("research"); const selectedCategory = Astro.url.searchParams.get("category"); -const filteredPosts = selectedCategory - ? posts.filter((post) => post.data.category === selectedCategory) - : posts; +const filteredPosts = selectedCategory ? posts.filter((post) => post.data.category === selectedCategory) : posts; -const featuredPost = !selectedCategory - ? posts.find((post) => post.data.featured) - : null; +const featuredPost = !selectedCategory ? posts.find((post) => post.data.featured) : null; -const gridPosts = selectedCategory - ? filteredPosts - : filteredPosts.filter((post) => !post.data.featured); +const gridPosts = selectedCategory ? filteredPosts : filteredPosts.filter((post) => !post.data.featured); --- @@ -30,20 +24,18 @@ const gridPosts = selectedCategory
-

- Research Library -

+

Research Library

Research & White Papers

- Explore industry research, market analysis, case studies, AI trends, - sustainability insights and product vision papers. + Explore industry research, market analysis, case studies, AI trends, sustainability insights and product + vision papers.

- +
{ author && ( @@ -96,7 +98,7 @@ if (!Content) {