Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝docs: change tutorial to intro #1238

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# イントロ

このチュートリアルでこどもテックキャラバンHPを**10分以内で理解・体験**してみよう!

## こどもテックキャラバンとは?
# こどもテックキャラバンとは?

「[こどもテックキャラバン](https://caravan-kidstec.com/)」とは、ロボット製作やプログラミングの学習、そして自然学習を通じて、子どもたちの可能性のとびらを広げることを応援する STEAM[^1] アクティビティを取り入れたイベントです。

Expand All @@ -18,9 +11,5 @@ NPOやスポンサー企業にとっては、自然保全や地域活性化の

![activities](/img/activities.avif)

## ホームページについて

早速、次の[事前準備](./requirement)を見てみよう!

[^1]: STEAM・・・科学 Science、技術 Technology、工学 Engineering、芸術 Arts、数学Mathematicsの5分野の横断的でクリエイティブな思考や行動の学びなど
[^2]: プロボノ(Pro Bono Public)・・・社会的・公共的な目的のために、職業上のスキルや経験を活かして取り組む社会貢献活動
6 changes: 6 additions & 0 deletions docs/docs/intro/02-homepage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# ホームページについて

早速、次の[事前準備](./requirement)を見てみよう!
8 changes: 4 additions & 4 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ const config: Config = {
items: [
{
type: "docSidebar",
sidebarId: "tutorialSidebar",
sidebarId: "introSidebar",
position: "left",
label: "チュートリアル",
label: "イントロ",
},
{
type: "docSidebar",
Expand All @@ -99,8 +99,8 @@ const config: Config = {
title: "Docs",
items: [
{
label: "チュートリアル",
to: "/docs/tutorial/intro",
label: "イントロ",
to: "/docs/intro/what-is-caravan-kidstec",
},
{
label: "ドキュメント",
Expand Down
2 changes: 1 addition & 1 deletion docs/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
*/
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{ type: "autogenerated", dirName: "tutorial" }],
introSidebar: [{ type: "autogenerated", dirName: "intro" }],
documentSidebar: [{ type: "autogenerated", dirName: "document" }],
// But you can create a sidebar manually
/*
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from "@docusaurus/Link"

Check warning on line 1 in docs/src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / quality

lint/correctness/noUndeclaredDependencies

The current dependency isn't specified in your package.json.
import useDocusaurusContext from "@docusaurus/useDocusaurusContext"

Check warning on line 2 in docs/src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / quality

lint/correctness/noUndeclaredDependencies

The current dependency isn't specified in your package.json.
import HomepageFeatures from "@site/src/components/HomepageFeatures"

Check warning on line 3 in docs/src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / quality

lint/correctness/noUndeclaredDependencies

The current dependency isn't specified in your package.json.
import Heading from "@theme/Heading"
import Layout from "@theme/Layout"
import clsx from "clsx"
Expand All @@ -20,9 +20,9 @@
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
to="/docs/tutorial/intro"
to="/docs/intro/what-is-caravan-kidstec"
>
チュートリアル - 10分 ⏱️
イントロ - 10分 ⏱️
</Link>
</div>
</div>
Expand Down
Loading