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
12 changes: 0 additions & 12 deletions blog/2019-05-28-first-blog-post.md

This file was deleted.

44 changes: 0 additions & 44 deletions blog/2019-05-29-long-blog-post.md

This file was deleted.

24 changes: 0 additions & 24 deletions blog/2021-08-01-mdx-blog-post.mdx

This file was deleted.

Binary file not shown.
29 changes: 0 additions & 29 deletions blog/2021-08-26-welcome/index.md

This file was deleted.

23 changes: 0 additions & 23 deletions blog/authors.yml

This file was deleted.

19 changes: 0 additions & 19 deletions blog/tags.yml

This file was deleted.

5 changes: 3 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const config = {
favicon: 'img/favicon.ico',

// Set the production url of your site here
url: 'http://docs.deeptempo.ai',
url: 'http://deeptempo.ai',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
Expand Down Expand Up @@ -78,6 +78,7 @@ const config = {
logo: {
alt: 'My Site Logo',
src: 'img/logo.png',
component: 'CustomLogo',
},
items: [
{
Expand Down Expand Up @@ -152,7 +153,7 @@ const config = {
],
},
],
copyright: `Copyright © 2024 Deeptempo, Inc. Built with Docusaurus`,
copyright: `Copyright © 2025 Deeptempo, Inc.`,
},
prism: {
theme: prismThemes.github,
Expand Down
19 changes: 19 additions & 0 deletions src/components/CustomLogo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from 'react';
import {useLocation} from '@docusaurus/router';

export default function CustomLogo() {
const location = useLocation();
const isHomePage = location.pathname === '/' || location.pathname === '/docs';

const logoUrl = isHomePage ? 'https://deeptempo.ai' : '/';

return (
<a href={logoUrl} style={{display: 'flex', alignItems: 'center'}}>
<img
src="/img/logo.png"
alt="DeepTempo Logo"
style={{height: '32px'}}
/>
</a>
);
}
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function HomepageHeader() {
<Link
className="button--hero"
to="/docs/snowUI">
Tempo Tutorial - 15min
Snowflake Tutorial - 15min
</Link>
</div>
</div>
Expand Down
23 changes: 0 additions & 23 deletions src/pages/index.module.css

This file was deleted.

7 changes: 0 additions & 7 deletions src/pages/markdown-page.md

This file was deleted.