Skip to content

Commit

Permalink
fix: remove blog-related components
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin committed Jul 25, 2024
1 parent a741dc8 commit 296ed67
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from "react";
import clsx from "clsx";
import Link from "@docusaurus/Link";
import { useBlogPost } from "@docusaurus/theme-common/internal";
import styles from "./styles.module.scss";

export default function LearnItemCard({ company }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import styles from "./styles.module.scss";

import customerStoriesIndexes from "../../../customerStoriesIndexes.json";

function BlogListPageContent() {
function AdoptionStoriesListPageContent() {
const companies = (customerStoriesIndexes?.companies || []).filter((company) => company.link);
const [activeFilters, setActiveFilters] = useState([]);
const categories = ["B2B & B2C", "Financial & Fintech", "E-Commerce", "And More"];
Expand Down Expand Up @@ -59,10 +59,8 @@ function BlogListPageContent() {
);
}

export default function BlogListPage() {
export default function AdoptionStoriesListPage() {
return (
<HtmlClassNameProvider className={clsx(ThemeClassNames.wrapper.blogPages, ThemeClassNames.page.blogListPage)}>
<BlogListPageContent />
</HtmlClassNameProvider>
<AdoptionStoriesListPageContent />
);
}

0 comments on commit 296ed67

Please sign in to comment.