This is an automated email from the ASF dual-hosted git repository.
mtaha pushed a commit to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/new-web by this push:
new fa4e5fab Update faqs, meta description, title and images (#297)
fa4e5fab is described below
commit fa4e5fab1408188e0afeaad6a74354ccbdddd8c3
Author: dpdjvhxm <[email protected]>
AuthorDate: Sat Apr 6 10:10:24 2024 +0900
Update faqs, meta description, title and images (#297)
- Update meta description : gatsby-config.js
- Update title name in index-page: src/pages/index.md
- Replace Image resources(Landing page banner, Article images) with reduced
size images
- Update FAQ Page: Add Q14 ~ Q17
---
gatsby-config.js | 2 +-
src/components/Footer.js | 16 +++-------------
src/pages/faq/index.js | 34 +++++++++++++++++++++++++++++++++-
src/pages/index.md | 2 +-
static/img/icon-github.png | Bin 2640 -> 570 bytes
static/img/image1.png | Bin 82812 -> 27702 bytes
static/img/image2.png | Bin 446413 -> 157640 bytes
static/img/image3.png | Bin 218333 -> 62585 bytes
static/img/image4.png | Bin 505500 -> 209383 bytes
static/img/image5.png | Bin 7497 -> 3172 bytes
static/img/image6.png | Bin 110552 -> 27686 bytes
static/img/image7.png | Bin 26284 -> 9385 bytes
static/img/landing-banner.png | Bin 283877 -> 255326 bytes
13 files changed, 38 insertions(+), 16 deletions(-)
diff --git a/gatsby-config.js b/gatsby-config.js
index 2f3d00ca..8014b3a9 100644
--- a/gatsby-config.js
+++ b/gatsby-config.js
@@ -3,7 +3,7 @@ module.exports = {
title: "Apache AGE, Graph database optimized for fast analysis and
real-time data processing. It is provided as an extension to PostgreSQL.",
- description: "Since May 2022, Apache AGE® is a Top-Level Project at the
Apache Software Foundation, born from AgensGraph and developed by Bitnine
Global Inc. since 2019. Donated to Apache in April 2020, it enhances graph
database capabilities under the Apache License 2.0, promoting open access.",
+ description: "Since May 2022, Apache AGE® is a Top-Level Project at the
Apache Software Foundation, born from AgensGraph and developed by Bitnine
Global Inc. since 2019. Donated to Apache in April 2020, it enhances graph
database capabilities under the Apache License 2.0.",
},
pathPrefix: "/",
plugins: [
diff --git a/src/components/Footer.js b/src/components/Footer.js
index 7d182213..953019a1 100644
--- a/src/components/Footer.js
+++ b/src/components/Footer.js
@@ -3,8 +3,6 @@ import * as React from 'react';
// images
import icoGithubLd from '../../static/img/icon-github.png';
import icoTwitterLd from '../../static/img/icon-x.png';
-import icoYoutubeLd from '../../static/img/icon-youtube.png';
-// import icoDiscordLd from '../../static/img/icon-discord.png';
// styles
@@ -21,8 +19,7 @@ const Footer = class extends React.Component {
const links =
document.getElementsByClassName('FooterLinks')[0].children;
links[0].children[0].src = icoGithubLd;
links[1].children[0].src = icoTwitterLd;
- links[2].children[0].src = icoYoutubeLd;
- // links[3].children[0].src = icoDiscordLd;
+
}
}
}
@@ -61,12 +58,12 @@ const Footer = class extends React.Component {
<a href="/joinus">Join AGE Community</a>
</li>
<li>
- <a href="https://www.reddit.com/r/apacheage/" target='_blank'>
+ <a href="https://www.reddit.com/r/apacheage/" target='_blank'
rel="noopener noreferrer">
AGE Forum
</a>
</li>
<li>
- <a href="https://github.com/apache/age/projects"
target='_blank'>AGE Project</a>
+ <a href="https://github.com/apache/age/projects" target='_blank'
rel="noopener noreferrer">AGE Project</a>
</li>
</ul>
@@ -152,13 +149,6 @@ const Footer = class extends React.Component {
style={{ width: '2.5em', height: '2.5em' }}
/>
</a>
- <a title="Youtube" href="https://youtu.be/qC_3F4Gaipk"
target={'_blank'}>
- <img
- src={icoYoutubeLd}
- alt="Youtube"
- style={{ width: '2.5em', height: '2.5em' }}
- />
- </a>
</div>
<p>
diff --git a/src/pages/faq/index.js b/src/pages/faq/index.js
index f43dd866..b8c91da1 100644
--- a/src/pages/faq/index.js
+++ b/src/pages/faq/index.js
@@ -143,8 +143,40 @@ class FAQ extends React.Component {
Please refer to <a href="https://age.apache.org/contribution/how"
target="_blank" rel="noopener noreferrer">the contribution guidelines</a>.
</>
),
- }
+ },
+ { id: 14, question: 'Q 14 : Is there any ongoing research or development
related to features or capabilities of Apache AGE?',
+ answer: () => (
+ <>
+ <p>Yes, being an open-source project, Apache AGE benefits from a
vibrant community of dedicated developers who are passionate about using their
skills to improve its features and capabilities. This collaborative environment
fosters continuous research and development efforts focused on enhancing the
functionality of Apache AGE and addressing emerging needs in the GDB field.
With contributors from various backgrounds using their expertise to innovate
and improve the platform, Ap [...]
+ </>
+ ),
+ },
+
+ { id: 15, question: 'Q 15 : Does Apache AGE support ACID(Atomicity,
Consistency, Isolation, and Durability) transactions?',
+ answer: () => (
+ <>
+ <p>Yes, Apache AGE supports ACID transactions for Graph, Relational
and JSON Document.</p>
+ </>
+ ),
+ },
+
+ { id: 16, question: 'Q 16 : Are there any limitations to the size or
scale of graphs that Apache AGE can handle?',
+ answer: () => (
+ <>
+ <p>Yes. The capacity for both vertices and edges is 281474976710655.
This limitation only applies to one particular graph. AGE allows creating
multiple graphs.</p>
+ </>
+ ),
+ },
+
+ { id: 17, question: 'Q 17 : How does Apache AGE handle indexing and
optimization for graph queries?',
+ answer: () => (
+ <>
+ <p>AGE uses PostrgreSQL's indexes. It stores properties of elements
(vertices and edges) as a custom type called "agtype". The structure of
properties is comparable to JSON objects. Therefore, properties can be indexed
in a similar way a "JSONB" column is indexed. For example, BTree, Hash and GIN
etc. indexes are supported.</p>
+ </>
+ ),
+ },
+
// 여기에 추가 질문과 답변을 넣을 수 있습니다.
];
diff --git a/src/pages/index.md b/src/pages/index.md
index f7d66948..9f441d5b 100644
--- a/src/pages/index.md
+++ b/src/pages/index.md
@@ -1,6 +1,6 @@
---
templateKey: index-page
-title: Apache AGE
+title: Apache AGE | Graph Database Extension for PostgreSQL
bannerImg: /img/landing-banner.png
bannerContents: >-
<h1 class="bannerHeader"><span>Apache AGE</span></br>
diff --git a/static/img/icon-github.png b/static/img/icon-github.png
index 763738e4..e5187fa2 100644
Binary files a/static/img/icon-github.png and b/static/img/icon-github.png
differ
diff --git a/static/img/image1.png b/static/img/image1.png
index 8d68ceda..a3fa6ef2 100644
Binary files a/static/img/image1.png and b/static/img/image1.png differ
diff --git a/static/img/image2.png b/static/img/image2.png
index de50d1a6..2056e57e 100644
Binary files a/static/img/image2.png and b/static/img/image2.png differ
diff --git a/static/img/image3.png b/static/img/image3.png
index c0543b42..5a902f47 100644
Binary files a/static/img/image3.png and b/static/img/image3.png differ
diff --git a/static/img/image4.png b/static/img/image4.png
index 6f78e864..03e3601e 100644
Binary files a/static/img/image4.png and b/static/img/image4.png differ
diff --git a/static/img/image5.png b/static/img/image5.png
index 0528f0a9..4c30f34e 100644
Binary files a/static/img/image5.png and b/static/img/image5.png differ
diff --git a/static/img/image6.png b/static/img/image6.png
index 0a92eb31..bfcae0d1 100644
Binary files a/static/img/image6.png and b/static/img/image6.png differ
diff --git a/static/img/image7.png b/static/img/image7.png
index 73342ac5..dfc64d56 100644
Binary files a/static/img/image7.png and b/static/img/image7.png differ
diff --git a/static/img/landing-banner.png b/static/img/landing-banner.png
index f0c60301..b9e9ae1d 100644
Binary files a/static/img/landing-banner.png and
b/static/img/landing-banner.png differ