Skip to content

Commit

Permalink
Add-On rename (#41)
Browse files Browse the repository at this point in the history
* site: Rename App Index to nRF Connect SDK Addons

Signed-off-by: Filip Zajdel <[email protected]>

* Rename old naming convention

Signed-off-by: Filip Zajdel <[email protected]>

* Rename to Add-On

Signed-off-by: Filip Zajdel <[email protected]>

* Rename to Add-on

Signed-off-by: FilipZajdel <[email protected]>

---------

Signed-off-by: Filip Zajdel <[email protected]>
Signed-off-by: FilipZajdel <[email protected]>
  • Loading branch information
FilipZajdel authored Apr 18, 2024
1 parent c01ec19 commit 8c0260c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion site/src/app/AboutDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function AboutDialog(props: { close: () => void }): JSX.Element {
return (
<div className="flex flex-col">
<div>
<DialogTitle title="About the App Index" onClose={props.close} />
<DialogTitle title="About the Add-on Index" onClose={props.close} />
</div>

<div className="p-3">
Expand Down
10 changes: 5 additions & 5 deletions site/src/app/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { FilterAction, Filters } from './filters';
import classNames from 'classnames';
import { QuestionIcon } from '@primer/octicons-react';

let contents = `static void gzll_tx_result_handler(struct gzll_tx_result *tx_result)a {
let contents = `static void gzll_tx_result_handler(struct gzll_tx_result *tx_result) {
int err;
bool result_value;
uint32_t ack_payload_length = NRF_GZLL_CONST_MAX_PAYLOAD_LENGTH;
Expand Down Expand Up @@ -63,7 +63,7 @@ function Header(props: Props): JSX.Element {

<div className="flex w-full items-center p-3 shadow-md md:hidden">
<h1 className="flex-grow text-center text-xl text-white">
nRF Connect SDK App Index
nRF Connect SDK Add-on Index
</h1>
{aboutIcon}
</div>
Expand All @@ -86,7 +86,7 @@ function Header(props: Props): JSX.Element {

<div className="flex flex-col items-center gap-2 px-2 md:px-0">
<h1 className="text-center text-4xl text-white drop-shadow">
nRF Connect SDK App Index
nRF Connect SDK Add-on Index
</h1>
<p className="text-center text-xl font-thin text-white drop-shadow-sm">
Discover applications and samples built for the nRF Connect SDK
Expand All @@ -105,7 +105,7 @@ function Header(props: Props): JSX.Element {
/>
<input
type="search"
placeholder="NCS version..."
placeholder="nRF Connect SDK version..."
value={props.filters.ncsSearch}
onChange={handleSearch("ncsSearch")}
aria-label="Filter NCS version"
Expand All @@ -127,7 +127,7 @@ function Header(props: Props): JSX.Element {
/>
<input
type="text"
placeholder="NCS ..."
placeholder="SDK ..."
value={props.filters.ncsSearch}
onChange={handleSearch("ncsSearch")}
className="h-full w-1/3 border-b border-gray-300 pl-3"
Expand Down
4 changes: 2 additions & 2 deletions site/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import type { Metadata } from 'next';
import './app.css';

export const metadata: Metadata = {
title: 'nRF Connect SDK App Index',
description: 'A live index of applications and samples available for the nRF Connect SDK.',
title: 'nRF Connect SDK Add-on Index',
description: 'A live index of supplementary components available for the nRF Connect SDK.',
authors: [{ name: 'Nordic Semiconductor', url: 'https://nordicsemi.com' }],
themeColor: '#00A9CE',
appleWebApp: { capable: true },
Expand Down

0 comments on commit 8c0260c

Please sign in to comment.