-
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(projects): add bearstudio projects
- Loading branch information
1 parent
b49fbc0
commit d3840d5
Showing
3 changed files
with
82 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import FicusUILogo from "~/svg/project/ficusUI"; | ||
import { FormizLogo } from "~/svg/project/formiz"; | ||
import { StartUILogo } from "~/svg/project/start-ui"; | ||
import { TwitchLogo } from "~/svg/project/twitch"; | ||
export const projects = [ | ||
{ | ||
name: "Formiz", | ||
description: | ||
"Multi steps form logic available out of the box! No more pain to build perfect UX for complex forms.", | ||
imageUrl: "/images/projects/formiz-background.png", | ||
githubUrl: "https://github.com/ivan-dalmet/formiz", | ||
projectLogo: <FormizLogo />, | ||
button: "Visit website", | ||
buttonUrl: "https://formiz-react.com/", | ||
}, | ||
|
||
{ | ||
name: "Start UI", | ||
description: | ||
"UI starters for web, mobile and design, which lets you easily bootstrap new UI projects.", | ||
imageUrl: "/images/projects/start-ui-background.png", | ||
twitterUrl: "https://twitter.com/startui_", | ||
githubUrl: "https://github.com/BearStudio/start-ui-web", | ||
projectLogo: <StartUILogo />, | ||
button: "Go to Start UI", | ||
buttonUrl: "https://start-ui.com/", | ||
}, | ||
{ | ||
name: "BS Live", | ||
description: | ||
"Bearstudio offers you stream sessions to share their knowledge and experience in a friendly atmosphere!", | ||
imageUrl: "/images/projects/stream-background.png", | ||
youtubeUrl: | ||
"https://www.youtube.com/channel/UC-2hpnhKgU2C_OFucjEN0IA/videos", | ||
projectLogo: <TwitchLogo />, | ||
button: "Check out channel", | ||
buttonUrl: "https://www.twitch.tv/bearstudiolive", | ||
}, | ||
{ | ||
name: "Ficus UI", | ||
description: | ||
"React Native UI library forked from Magnus UI and inspired by Chakra UI.", | ||
imageUrl: "/images/projects/ficusUi-background.png", | ||
githubUrl: "https://github.com/BearStudio/react-native-ficus-ui", | ||
projectLogo: <FicusUILogo />, | ||
button: "Visit website", | ||
buttonUrl: "https://ficus-ui.com/", | ||
}, | ||
]; |
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,24 @@ | ||
import React from "react"; | ||
|
||
import { projects } from "@/data/projects"; | ||
|
||
import DetailCard from "@/components/ui/detailCard/DetailCard"; | ||
|
||
const Projects = () => { | ||
return ( | ||
<div className="relative z-50 mx-auto -mt-24 max-w-7xl px-6 pb-16 sm:px-6 lg:px-32"> | ||
<div className="space-y-12"> | ||
<ul | ||
role="list" | ||
className="grid auto-rows-fr space-y-12 sm:gap-x-16 sm:gap-y-12 sm:space-y-0 md:grid-cols-2 lg:gap-x-16" | ||
> | ||
{projects.map((project) => ( | ||
<DetailCard key={project.name} DetailCardData={project} /> | ||
))} | ||
</ul> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Projects; |