forked from sismo-core/app-store
-
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.
feat: integration new UX (sismo-core#88)
* feat: test: slideshow on mobile * feat: test: slideshow on mobile * fix: remove btn test * remove secondary * feat: large app card done * feat add secondary button 3D * fix button loading * feat: adjust spacing in mobile large card * feat: small card mobile done * feat: all cards done and home page * feat: dynamic featured card sizing * WIP explore pages * feat: explore done * feat remove tags * feat adjusted hver effect * feat: space page * WIP integration * WIP: first inegrated version * fix: space link * fix: get App * feat: sort app by date * feat: plugged toggle --------- Co-authored-by: leo Sayous <[email protected]>
- Loading branch information
1 parent
62eb3a4
commit a3a42a3
Showing
108 changed files
with
5,417 additions
and
2,274 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import {configsDemo, configsMain} from "./index"; | ||
|
||
describe('space-config/apps', () => { | ||
it("demo config should not have the same slug", () => { | ||
const slugs = configsDemo.map((space) => space.metadata.slug); | ||
expect(slugs).toEqual([...new Set(slugs)]); | ||
}); | ||
|
||
it("demo apps should not have the same slug", () => { | ||
const apps = []; | ||
for (let space of configsDemo) { | ||
apps.push(...space.apps); | ||
} | ||
const slugs = apps.map((app) => app.metadata.slug); | ||
expect(slugs).toEqual([...new Set(slugs)]); | ||
}); | ||
|
||
it("prod config should not have the same slug", () => { | ||
const slugs = configsMain.map((space) => space.metadata.slug); | ||
expect(slugs).toEqual([...new Set(slugs)]); | ||
}); | ||
|
||
it("prod apps should not have the same slug", () => { | ||
const apps = []; | ||
for (let space of configsMain) { | ||
apps.push(...space.apps); | ||
} | ||
const slugs = apps.map((app) => app.metadata.slug); | ||
expect(slugs).toEqual([...new Set(slugs)]); | ||
}); | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"use client"; | ||
|
||
import React from "react"; | ||
import Hero from "@/src/components/Hero"; | ||
|
||
type Props = { | ||
children: React.ReactNode; | ||
}; | ||
|
||
export default function ExploreLayout({ children }: Props) { | ||
|
||
return ( | ||
<> | ||
<Hero/> | ||
{children} | ||
</> | ||
); | ||
} |
Oops, something went wrong.