Skip to content

Commit e75352d

Browse files
authored
Merge pull request #2 from intrinsic-opensource/asymingt/fix-branding
Fix a few lines of text on the website.
2 parents 5058fa6 + ea26241 commit e75352d

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

components/Footer.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ import React from 'react'
22

33
interface FooterProps {}
44

5-
export const REPORT_LINK =
6-
'https://github.com/intrinsic-opensource/ros-central-registry/tree/main/docs#requesting-to-take-down-a-module'
7-
export const BCR_UI_REPO_LINK = 'https://github.com/bazel-contrib/bcr-ui'
5+
export const REPORT_LINK = 'https://github.com/intrinsic-opensource/rcr-ui/issues'
6+
export const RCR_UI_REPO_LINK = 'https://github.com/intrinsic-opensource/rcr-ui'
87

98
export const Footer: React.FC<FooterProps> = () => {
109
return (
1110
<footer className="bg-ros-blue flex flex-col items-center justify-center gap-2 h-18 mt-4 py-2.5">
1211
<div className="text-center text-white">
13-
The ROS Central Registry is maintained by the ROS PMC.
12+
Open source robotics tooling, powered by Intrinsic and the OSRF.
1413
</div>
1514
<div className="text-center text-white">
1615
To report an issue with one of the modules, see the{' '}
@@ -25,7 +24,7 @@ export const Footer: React.FC<FooterProps> = () => {
2524
<div className="text-center text-white">
2625
The source of this website can be found in{' '}
2726
<a
28-
href={BCR_UI_REPO_LINK}
27+
href={RCR_UI_REPO_LINK}
2928
className="text-white hover:text-gray-300"
3029
>
3130
this repository

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "bcr-web-ui",
2+
"name": "rcr-web-ui",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {

pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const Home: NextPage<HomePageProps> = ({ searchIndex }) => {
7373
ROS Central Registry
7474
</h1>
7575
<h4 className="text-grey text-xl mt-2 mb-6">
76-
The official Bazel rules for ROS packages
76+
ROS packages as Bazel Modules (developer preview)
7777
</h4>
7878
<span>
7979
Please visit the <a href='https://github.com/intrinsic-opensource/ros-central-registry'>ROS Central Registry</a> website for usage information.

0 commit comments

Comments
 (0)