Skip to content
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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# アルゴリズム入門のシケプリ
<div style="text-align:center"><img src="./static/img/logo-black.svg" alt="logo" height="200px" ></div>

# Introduction to Algorithms

これは、アルゴリズム入門のシケプリです。

Expand Down
10 changes: 5 additions & 5 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ const darkCodeTheme = require("prism-react-renderer/themes/dracula");

/** @type {import('@docusaurus/types').Config} */
const config = {
title: "アルゴリズム入門",
title: "Introduction to Algorithms",
// tagline: '',
url: "https://sikepuri-algorithm.github.io",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.png",
favicon: "img/favicon.svg",

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
Expand Down Expand Up @@ -73,17 +73,17 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: "アルゴリズム入門",
title: "Introduction to Algorithms",
logo: {
alt: "My Site Logo",
src: "img/logo.png",
src: "img/logo.svg",
},
items: [
{
type: "doc",
docId: "index",
position: "left",
label: "ドキュメント",
label: "Doc",
},
// {to: '/blog', label: 'Blog', position: 'left'},
{
Expand Down
10 changes: 8 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ function HomepageHeader() {
return (
<header className={clsx("hero hero--primary", styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
{/* <h1 className="hero__title">{siteConfig.title}</h1> */}
{/* <p className="hero__subtitle">{siteConfig.tagline}</p> */}
<img
src="img/logo-no-background.svg"
height="250"
alt="logo"
style={{ marginBottom: "20px" }}
/>
<div className={styles.buttons}>
<Link className="button button--secondary button--lg" to="/docs">
はじめる
Expand Down
Binary file removed static/img/favicon.png
Binary file not shown.
1 change: 1 addition & 0 deletions static/img/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/img/logo-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/img/logo-no-background.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/img/logo.png
Binary file not shown.
1 change: 1 addition & 0 deletions static/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.