Skip to content

Commit 4ddbf3d

Browse files
committed
Random meta updates
1 parent 87865e9 commit 4ddbf3d

File tree

10 files changed

+15
-10
lines changed

10 files changed

+15
-10
lines changed

docs/en/docs/getting-started/templates.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { ALL_TEMPLATES } from "@components/carousel-templates/data";
55

66
<AvatarImage icon="extension" />
77

8+
> **Warning**: This feature is a work in progress and may be incomplete or subject to change. If you see an error or something that could be improved, please make a pull-request. The link that documents this feature can be found at the bottom of the page.
9+
810
# Templates
911

1012
Extension.js allows you to create new browser extensions quickly by using templates. Templates provide pre-built structures, components, and configurations that fit various needs and technologies. By using the `--template` flag, you can select the one that best suits your project requirements.

docs/public/robots.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-agent: *
2+
Disallow: /login

rspress.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ import { defineConfig } from "rspress/config";
77

88
export default defineConfig({
99
root: path.join(__dirname, "docs"),
10+
head: ['<meta name="author" content="Cezar Augusto">'],
1011
title: "The Cross-Browser Extension Framework • Extension.js",
11-
description:
12-
"Extension.js makes it very easy to create, develop, and distribute cross-browser extensions with no build configuration.",
12+
// description:
13+
// "Extension.js makes it very easy to create, develop, and distribute cross-browser extensions with no build configuration.",
1314
lang: "en",
1415
logo: {
1516
light:

theme/components-home/Landingpage/Hero/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Hero = memo(() => {
1717
<picture className="flex lg:justify-end justify-center w-full">
1818
<img
1919
src="https://user-images.githubusercontent.com/4672033/102850460-4d22aa80-43f8-11eb-82db-9efce586f73e.png"
20-
alt="Green puzzle"
20+
alt="The green puzzle that represents Extension.js logo"
2121
loading="eager"
2222
decoding="async"
2323
/>

theme/components/avatar-group/browsers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const AvatarBrowsers: React.FC<AvatarBrowsersProps> = ({
4141
<img
4242
key={browser.toLowerCase()}
4343
src={browserIcons[browser.toLowerCase()]}
44-
alt={`${browser} icon`}
44+
alt={`The ${browser} browser icon`}
4545
className={
4646
browser.toLowerCase() === "gecko" ||
4747
browser.toLowerCase() === "waterfox"

theme/components/avatar-group/config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AvatarBrowsers: React.FC<AvatarBrowsersProps> = ({ browsers }) => {
3737
<img
3838
key={browser.toLowerCase()}
3939
src={browserIcons[browser.toLowerCase()]}
40-
alt={`${browser} icon`}
40+
alt={`The ${browser} browser icon`}
4141
className={
4242
browser.toLowerCase() === "gecko" ||
4343
browser.toLowerCase() === "waterfox"

theme/components/avatar-group/css.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AvatarBrowsers: React.FC<AvatarBrowsersProps> = ({ browsers }) => {
3737
<img
3838
key={browser.toLowerCase()}
3939
src={browserIcons[browser.toLowerCase()]}
40-
alt={`${browser} icon`}
40+
alt={`The ${browser} browser icon`}
4141
className={
4242
browser.toLowerCase() === "gecko" ||
4343
browser.toLowerCase() === "waterfox"

theme/components/avatar-group/javascript.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AvatarBrowsers: React.FC<AvatarBrowsersProps> = ({ browsers }) => {
3737
<img
3838
key={browser.toLowerCase()}
3939
src={browserIcons[browser.toLowerCase()]}
40-
alt={`${browser} icon`}
40+
alt={`The ${browser} browser icon`}
4141
className={
4242
browser.toLowerCase() === "gecko" ||
4343
browser.toLowerCase() === "waterfox"

theme/components/avatar-group/technologies.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AvatarBrowsers: React.FC<AvatarBrowsersProps> = ({ browsers }) => {
3737
<img
3838
key={browser.toLowerCase()}
3939
src={browserIcons[browser.toLowerCase()]}
40-
alt={`${browser} icon`}
40+
alt={`The ${browser} browser icon`}
4141
className={
4242
browser.toLowerCase() === "gecko" ||
4343
browser.toLowerCase() === "waterfox"

theme/components/tabs-command-line/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export function TabsCommandLine({ command }: TabsCommandLineProps) {
8787
>
8888
<img
8989
src={tab.iconUrl || "https://placekitten.com/32/32"}
90-
alt="The package manager iconUrl"
90+
alt={`The package manager ${tab.label} icon`}
9191
width="16"
9292
className="mr-2"
9393
/>
@@ -111,7 +111,7 @@ export function TabsCommandLine({ command }: TabsCommandLineProps) {
111111
onClick={() =>
112112
copyToClipboard(
113113
getCommand(tab.key as "npm" | "pnpm" | "yarn"),
114-
tab.key,
114+
tab.key
115115
)
116116
}
117117
>

0 commit comments

Comments
 (0)