-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
54 changed files
with
311 additions
and
231 deletions.
There are no files selected for viewing
25 changes: 11 additions & 14 deletions
25
src/app/[locale]/(landing)/components/filters/filters.server.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
import {Suspense} from 'react'; | ||
import LandingFiltersGroups from "@/app/(landing)/components/filters/filtersGroups.server"; | ||
import {ReactNodeProps} from "@/types/types"; | ||
import { Suspense } from 'react'; | ||
import LandingFiltersGroups from '@/app/(landing)/components/filters/filtersGroups.server'; | ||
import { ReactNodeProps } from '@/types/types'; | ||
|
||
export default async function LandingFilters() { | ||
return ( | ||
<LandingFiltersContainer> | ||
<Suspense> | ||
<LandingFiltersGroups /> | ||
</Suspense> | ||
<Suspense> | ||
<LandingFiltersGroups /> | ||
</Suspense> | ||
</LandingFiltersContainer> | ||
); | ||
} | ||
|
||
|
||
function LandingFiltersContainer({children}: ReactNodeProps) { | ||
function LandingFiltersContainer({ children }: ReactNodeProps) { | ||
return ( | ||
<div className="relative bg-secondary"> | ||
<div className="w-full grid grid-cols-3"> | ||
{children} | ||
</div> | ||
</div> | ||
<div className="relative bg-secondary"> | ||
<div className="grid w-full grid-cols-3">{children}</div> | ||
</div> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/app/[locale]/design/components/content/project/audioPlayer.server.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export default function Loading() { | ||
return ( | ||
<main className="bg-primary min-h-content h-content w-screen"> | ||
<div className="bg-secondary mx-border rounded h-full flex justify-center items-center"> | ||
<p>Loading...</p> | ||
</div> | ||
<main className="h-content min-h-content w-screen bg-primary"> | ||
<div className="mx-border flex h-full items-center justify-center rounded bg-secondary"> | ||
<p>Loading...</p> | ||
</div> | ||
</main> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.