This is an automated email from the ASF dual-hosted git repository.
thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new eb6108d2e2 GH-39600: [R] Add trademark attribution to pkgdown site
footer (#49332)
eb6108d2e2 is described below
commit eb6108d2e281719b07186f945b04d03bd36d04b0
Author: Nic Crane <[email protected]>
AuthorDate: Mon Apr 6 21:25:33 2026 +0100
GH-39600: [R] Add trademark attribution to pkgdown site footer (#49332)
### Rationale for this change
Per ASF policy, documentation pages should include trademark attribution in
the footer. See #39461 for the broader effort.
### What changes are included in this PR?
Add Apache trademark attribution text to the R pkgdown site footer.
### Are these changes tested?
Documentation only. Can verify by building pkgdown site locally.
### Are there any user-facing changes?
Footer now includes trademark text matching the main Arrow website.
---
This PR was generated by Claude. All outputs were reviewed and confirmed
before pushing.
* GitHub Issue: #39600
Lead-authored-by: Nic Crane <[email protected]>
Co-authored-by: Jonathan Keane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
---
r/_pkgdown.yml | 4 +++-
r/pkgdown/extra.css | 5 +++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/r/_pkgdown.yml b/r/_pkgdown.yml
index 39700914db..57e99648ec 100644
--- a/r/_pkgdown.yml
+++ b/r/_pkgdown.yml
@@ -363,6 +363,8 @@ repo:
footer:
structure:
left: older_versions
- right: built_with
+ right: [built_with, legal]
components:
older_versions: "[Older versions of these
docs](https://arrow.apache.org/docs/r/versions.html)"
+ legal: |
+ <small>Apache Arrow, Arrow, Apache, the Apache logo, and the Apache
Arrow project logo are either registered trademarks or trademarks of The Apache
Software Foundation in the United States and other countries.</small>
diff --git a/r/pkgdown/extra.css b/r/pkgdown/extra.css
index b5aab24f0d..1a9838b1ab 100644
--- a/r/pkgdown/extra.css
+++ b/r/pkgdown/extra.css
@@ -14,3 +14,8 @@
#search-input::placeholder {
color: #d9d9d9;
}
+
+/* Add bottom padding to footer to prevent Kapa AI widget from overlaying
content */
+footer {
+ padding-bottom: 80px;
+}