We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b8f0a commit bff8841Copy full SHA for bff8841
app/layout.config.tsx
@@ -23,9 +23,6 @@ export const baseOptions: HomeLayout = {
23
{ name: "Photography", url: "/blog/tag/photography" },
24
{ name: "Programming", url: "/blog/tag/programming" }
25
],
26
- tags: {
27
- title: "Our tag here"
28
- },
29
social: [{
30
icon: <Github />,
31
name: "Github",
utils/types.ts
@@ -13,13 +13,8 @@ export interface TypeBlogNav {
13
name: string; url: string
14
}
15
16
-export interface TypeTags{
17
- title: string;
18
-}
19
-
20
export interface HomeLayout extends BaseLayoutProps {
21
social?: TypeSocial[];
22
faqs?: TypeFAQ[]
blog_nav?: TypeBlogNav[]
- tags?: TypeTags
0 commit comments