[ADDED: Chroma Grid]

This commit is contained in:
sanjanamilind14
2025-07-16 20:23:35 +05:30
parent 6906cc26be
commit 634cb5f1a1
5 changed files with 349 additions and 1 deletions

View File

@@ -0,0 +1,44 @@
import code from '@content/Components/ChromaGrid/ChromaGrid.vue?raw';
import type { CodeObject } from '../../../types/code';
export const chromaGrid: CodeObject = {
cli: `npx jsrepo add https://vue-bits.dev/ui/Components/ChromaGrid`,
installation: `npm install gsap`,
usage: `<template>
<div style="height: 600px; position: relative">
<ChromaGrid
:items="items"
:radius="300"
:damping="0.45"
:fadeOut="0.6"
ease="power3.out"
/>
</div>
</template>
<script setup lang="ts">
import ChromaGrid from "./ChromaGrid.vue";
const items = [
{
image: "https://i.pravatar.cc/300?img=1",
title: "Sarah Johnson",
subtitle: "Frontend Developer",
handle: "@sarahjohnson",
borderColor: "#3B82F6",
gradient: "linear-gradient(145deg, #3B82F6, #000)",
url: "https://github.com/sarahjohnson"
},
{
image: "https://i.pravatar.cc/300?img=2",
title: "Mike Chen",
subtitle: "Backend Engineer",
handle: "@mikechen",
borderColor: "#10B981",
gradient: "linear-gradient(180deg, #10B981, #000)",
url: "https://linkedin.com/in/mikechen"
}
]
</script>`,
code
};