From 7c7a0a3c243b94b9344e18a37f686c600ec7b962 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 14 Jan 2022 12:14:35 +0100 Subject: chore: change posts list styles --- src/pages/recherche/index.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/pages/recherche/index.tsx') diff --git a/src/pages/recherche/index.tsx b/src/pages/recherche/index.tsx index ece76eb..c8a7b9b 100644 --- a/src/pages/recherche/index.tsx +++ b/src/pages/recherche/index.tsx @@ -13,7 +13,9 @@ import Head from 'next/head'; import { useRouter } from 'next/router'; import { useEffect, useState } from 'react'; import useSWRInfinite from 'swr/infinite'; -import styles from '@styles/pages/Listing.module.scss'; +import Sidebar from '@components/Sidebar/Sidebar'; +import { ThematicsList, TopicsList } from '@components/Widget'; +import styles from '@styles/pages/Page.module.scss'; const Search: NextPageWithLayout = () => { const [query, setQuery] = useState(''); @@ -73,7 +75,9 @@ const Search: NextPageWithLayout = () => { {head.title} -
+
@@ -84,6 +88,10 @@ const Search: NextPageWithLayout = () => { >{t`Load more?`} )}
+ + + +
); -- cgit v1.2.3