AppStore.tsx raw
1 import { CirclePlusIcon } from "lucide-react";
2 import ResponsiveExternalLinkButton from "src/components/ResponsiveExternalLinkButton";
3 import SuggestedApps from "src/components/connections/SuggestedApps";
4
5 function AppStore() {
6 return (
7 <>
8 <div className="flex flex-col flex-1">
9 <div className="flex justify-between items-center">
10 <div className="flex-1">
11 <h1 className="text-xl lg:text-2xl font-semibold">App Store</h1>
12 </div>
13 <div className="flex gap-3 h-full">
14 <ResponsiveExternalLinkButton
15 icon={CirclePlusIcon}
16 text="Submit your app"
17 variant="outline"
18 to="https://github.com/getAlby/hub/wiki/How-to:-submit-new-app-to-Hub's-Store"
19 />
20 </div>
21 </div>
22 </div>
23 <SuggestedApps />
24 </>
25 );
26 }
27
28 export default AppStore;
29