Skip to content

Commit e543d24

Browse files
committed
remove bg color
1 parent 67d994f commit e543d24

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

app/[locale]/(user)/publishers/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const PublishersListingPage = () => {
6868
);
6969

7070
return (
71-
<main className="bg-baseGraySlateSolid2">
71+
<main >
7272
<BreadCrumbs
7373
data={[
7474
{ href: '/', label: 'Home' },

app/[locale]/(user)/sectors/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const SectorsListingPage = () => {
6464
};
6565

6666
return (
67-
<main className="bg-baseGraySlateSolid2">
67+
<main >
6868
<BreadCrumbs
6969
data={[
7070
{ href: '/', label: 'Home' },

app/[locale]/(user)/usecases/page.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
'use client';
22

33
import Image from 'next/image';
4+
import { fetchUseCases } from '@/fetch';
45
import { graphql } from '@/gql';
56
import { useQuery } from '@tanstack/react-query';
6-
import { fetchUseCases } from '@/fetch';
77
import { Card, Spinner, Text } from 'opub-ui';
8-
import BreadCrumbs from '@/components/BreadCrumbs';
8+
99
import { GraphQL } from '@/lib/api';
10+
import BreadCrumbs from '@/components/BreadCrumbs';
1011
import ListingComponent from '../components/ListingComponent';
12+
1113
const breadcrumbData = [
1214
{ href: '/', label: 'Home' },
1315
{ href: '#', label: 'Use Cases' },
1416
];
1517

1618
const UseCasesListingPage = () => {
1719
return (
18-
<main className="bg-baseGraySlateSolid2">
19-
<BreadCrumbs
20-
data={breadcrumbData}
21-
/>
20+
<main>
21+
<BreadCrumbs data={breadcrumbData} />
2222
<div className=" bg-primaryBlue ">
2323
<div className="container flex flex-col-reverse justify-center gap-8 p-10 lg:flex-row ">
2424
<div className="flex flex-col justify-center gap-6">
@@ -28,7 +28,7 @@ const UseCasesListingPage = () => {
2828
<Text
2929
variant="headingLg"
3030
fontWeight="regular"
31-
className=" text-surfaceDefault leading-3 lg:leading-5"
31+
className=" leading-3 text-surfaceDefault lg:leading-5"
3232
>
3333
By Use case we mean any specific sector or domain data led
3434
interventions that can be applied to address some of the most
@@ -45,13 +45,13 @@ const UseCasesListingPage = () => {
4545
/>
4646
</div>
4747
</div>
48-
<div className="container p-6 lg:pb-20 lg:p-10">
48+
<div className="container p-6 lg:p-10 lg:pb-20">
4949
<div>
50-
<Text variant="heading2xl" fontWeight='bold'>Explore Use Cases</Text>
50+
<Text variant="heading2xl" fontWeight="bold">
51+
Explore Use Cases
52+
</Text>
5153
</div>
52-
<ListingComponent
53-
fetchDatasets={fetchUseCases}
54-
/>
54+
<ListingComponent fetchDatasets={fetchUseCases} />
5555
</div>
5656
</main>
5757
);

0 commit comments

Comments
 (0)