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: 2 additions & 2 deletions apps/site/app/[locale]/feed/[feed]/route.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { NextResponse } from 'next/server';

import provideWebsiteFeeds from '#site/next-data/providers/websiteFeeds';
import { siteConfig } from '#site/next.json.mjs';
import { defaultLocale } from '#site/next.locales.mjs';
import { getFeeds } from '#site/util/feeds';

type DynamicStaticPaths = { locale: string; feed: string };
type StaticParams = { params: Promise<DynamicStaticPaths> };
Expand All @@ -14,7 +14,7 @@ export const GET = async (_: Request, props: StaticParams) => {
const params = await props.params;

// Generate the Feed for the given feed type (blog, releases, etc)
const websiteFeed = provideWebsiteFeeds(params.feed);
const websiteFeed = getFeeds(params.feed);

return new NextResponse(websiteFeed, {
headers: { 'Content-Type': 'application/xml' },
Expand Down
2 changes: 1 addition & 1 deletion apps/site/components/Blog/BlogPostCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type BlogPostCardProps = {
category: BlogCategory;
description?: string;
authors?: Array<string>;
date?: Date;
date?: string | Date;
slug?: string;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

.scrollDownButton {
@apply absolute
bottom-36
bottom-28
left-1/2
inline-flex
-translate-x-1/2
Expand All @@ -53,7 +53,6 @@
focus:bg-neutral-300
focus:outline-none
motion-safe:transition-colors
lg:bottom-28
dark:bg-neutral-900
dark:text-neutral-200
focus:dark:bg-neutral-800;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ChatActions from '@node-core/ui-components/Common/Search/Chat/Actions';
import type { Interaction } from '@orama/core';
import { ChatInteractions } from '@orama/ui/components';
import type { FC } from 'react';

import { ChatActions } from '../ChatActions';
import ChatSources from '../ChatSources';
import styles from './index.module.css';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

.documentLink {
@apply rounded-xl
bg-white
bg-neutral-100
px-4
py-2
text-neutral-900
duration-300
hover:bg-neutral-200
focus:bg-neutral-200
motion-safe:transition-colors
lg:bg-neutral-100
dark:bg-neutral-950
dark:text-neutral-200
hover:dark:bg-neutral-900
Expand Down
65 changes: 0 additions & 65 deletions apps/site/components/Common/Searchbox/EmptyResults/index.tsx

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

63 changes: 0 additions & 63 deletions apps/site/components/Common/Searchbox/MobileTopBar/index.tsx

This file was deleted.

Loading
Loading