Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/landing/src/app/(detail)/components/MdxCardFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ export default function MdxCardFooter({
const handleCopy = () => {
navigator.clipboard
.writeText(code)
.then(() => setCopied(true))
.then(() => {
setCopied(true)
setTimeout(() => {
setCopied(false)
}, 1000 * 5)
})
.catch(() => setCopied(false))
}

Expand Down
8 changes: 3 additions & 5 deletions apps/landing/src/app/(detail)/components/overview/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ export default function Page() {
Devup UI Components
</Text>
<Text color="$text" typography="bodyReg">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam
venenatis, elit in hendrerit porta, augue ante scelerisque diam, ac
egestas lacus est nec urna. Cras commodo risus hendrerit, suscipit nibh
at, porttitor dui. Vivamus tincidunt pretium nibh et pulvinar. Nam quis
tristique neque, vitae facilisis justo. Ut non tristique dui.
Devup UI is a library of components that can be used to build web
applications. It is built with React and TypeScript and is designed to
be used with the Devup framework.
</Text>
<VStack gap="16px" overflow="visible" py="30px">
<Text color="$title" typography="h6">
Expand Down