mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-07-14 21:06:28 +00:00
Bump @docusaurus/preset-classic from 2.0.0-alpha.72 to 2.0.0-alpha.73 (#890)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Brien <tom@byth.co.uk>
This commit is contained in:
parent
1b12130f46
commit
1360fbb80f
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: ""
|
||||
---
|
||||
|
||||
[This page has moved.](creating_integration_manifest.md)
|
||||
|
||||
<script>document.location = 'creating_integration_manifest.html';</script>
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: ""
|
||||
---
|
||||
|
||||
[This page has moved.](https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_light)
|
||||
|
||||
<script>document.location = 'https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_light';</script>
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: ""
|
||||
---
|
||||
|
||||
[This page has moved.](https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_sensor)
|
||||
|
||||
<script>document.location = 'https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_sensor';</script>
|
@ -12,7 +12,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"by-node-env": "^2.0.1",
|
||||
"@docusaurus/preset-classic": "^2.0.0-alpha.72",
|
||||
"@docusaurus/preset-classic": "^2.0.0-alpha.73",
|
||||
"@docusaurus/core": "^2.0.0-alpha.73",
|
||||
"@mdx-js/react": "^1.6.21",
|
||||
"clsx": "^1.1.1",
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React from "react";
|
||||
import classnames from "classnames";
|
||||
import clsx from 'clsx';
|
||||
import Layout from "@theme/Layout";
|
||||
import Link from "@docusaurus/Link";
|
||||
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
|
||||
@ -97,7 +97,7 @@ const features = [
|
||||
function Feature({ imageUrl, title, description }) {
|
||||
const imgUrl = useBaseUrl(imageUrl);
|
||||
return (
|
||||
<div className={classnames("col col--4", styles.feature)}>
|
||||
<div className={clsx("col col--4", styles.feature)}>
|
||||
{imgUrl && (
|
||||
<div className="text--center">
|
||||
<img className={styles.featureImage} src={imgUrl} alt={title} />
|
||||
@ -118,13 +118,13 @@ function Home() {
|
||||
title={`Home Assistant Developer Docs`}
|
||||
description="Get started developing for Home Assistant"
|
||||
>
|
||||
<header className={classnames("hero hero--primary", styles.heroBanner)}>
|
||||
<header className={clsx("hero hero--primary", styles.heroBanner)}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className={classnames('col col--5')}>
|
||||
<div className={clsx('col col--5')}>
|
||||
<img className={styles.heroLogo} alt="Home Assistant Logo" src="/img/logo-white.svg" />
|
||||
</div>
|
||||
<div className={classnames('col col--5')}>
|
||||
<div className={clsx('col col--5')}>
|
||||
<h1 className={styles.heroTitle}>{siteConfig.title}</h1>
|
||||
<p className={styles.heroTagline}>{siteConfig.tagline}</p>
|
||||
<p>
|
||||
|
@ -62,3 +62,8 @@
|
||||
/docs/lovelace_custom_card /docs/frontend/custom-ui/lovelace-custom-card
|
||||
/docs/supervisor/developing /docs/supervisor/development
|
||||
/docs/dev_101_index /docs/dev_101_hass
|
||||
|
||||
# Tidying moved pages
|
||||
/docs/creating_platform_example_sensor https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_sensor
|
||||
/docs/creating_platform_example_light https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_light
|
||||
/docs/creating_component_deps_and_reqs /docs/creating_integration_manifest
|
||||
|
Loading…
x
Reference in New Issue
Block a user