Skip to content
Draft
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
4 changes: 2 additions & 2 deletions apps/www/app/(app)/mist-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const MistSection = () => {
className="ml-3 mt-3"
variant="ghost">
<Link
target="_blank"
target="_blank" rel="noopener noreferrer"
href="https://github.com/tailark/blocks/blob/main/packages/mist-kit/README.md">
Docs
</Link>
Expand Down Expand Up @@ -195,7 +195,7 @@ export const MistSection = () => {
<div>
<h3 className="flex items-center gap-1 text-sm font-medium">
<Link
target="_blank"
target="_blank" rel="noopener noreferrer"
href={testimonial.link}
className="line-clamp-1 capitalize before:absolute before:inset-0">
{testimonial.name}
Expand Down
2 changes: 1 addition & 1 deletion apps/www/app/(app)/mist/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function Home() {
asChild
size="sm">
<Link
target="_blank"
target="_blank" rel="noopener noreferrer"
href="https://github.com/tailark/blocks/blob/main/packages/mist-kit/README.md">
Docs
<ArrowUpRight
Expand Down
2 changes: 1 addition & 1 deletion apps/www/app/(app)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default async function Home() {
<div>
<h3 className="flex items-center gap-1 text-sm font-medium">
<Link
target="_blank"
target="_blank" rel="noopener noreferrer"
href={testimonial.link}
className="line-clamp-1 capitalize before:absolute before:inset-0">
{testimonial.name}
Expand Down
2 changes: 1 addition & 1 deletion apps/www/app/(app)/veil/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default async function Home() {
className="ml-3 pr-2.5"
asChild>
<Link
target="_blank"
target="_blank" rel="noopener noreferrer"
href="https://github.com/tailark/blocks/blob/main/packages/veil-kit/README.md">
Docs
<ArrowUpRight className="size-3.5! opacity-50" />
Expand Down
2 changes: 1 addition & 1 deletion apps/www/app/(discover)/components/filter-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function FilterPanel({ filterGroups, selectedFilters, onFilterChange, isC
</Link>
<Link
href="https://pro.tailark.com/illustrations"
target="_blank"
target="_blank" rel="noopener noreferrer"
data-state={pathname === '/illustrations' ? 'checked' : 'unchecked'}
className={radioItem}>
<ImageIcon className="size-3.5 *:first:fill-sky-300 *:last:fill-sky-600 dark:stroke-transparent" />
Expand Down
4 changes: 2 additions & 2 deletions apps/www/components/marketing/illustrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const IllustrationsSection = () => {
<Link
href="https://pro.tailark.com/illustrations"
className="text-sm!"
target="_blank">
target="_blank" rel="noopener noreferrer">
Explore illustrations
<span className="border-l-foreground/50 ml-0.5 block size-0 border-y-4 border-l-4 border-y-transparent" />
</Link>
Expand Down Expand Up @@ -97,7 +97,7 @@ export const IllustrationsSection = () => {
className="text-sm! z-10 mx-auto mt-6 flex w-fit">
<Link
href="https://pro.tailark.com/illustrations"
target="_blank">
target="_blank" rel="noopener noreferrer">
See more illustrations
<span className="border-t-foreground/50 ml-0.5 block size-0 -rotate-90 border-x-4 border-t-4 border-x-transparent" />
</Link>
Expand Down
2 changes: 1 addition & 1 deletion apps/www/components/marketing/wall-of-love.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function WallOfLove() {
<div>
<h3 className="flex items-center gap-1 text-sm font-medium">
<Link
target="_blank"
target="_blank" rel="noopener noreferrer"
href={testimonial.link}
className="line-clamp-1 capitalize before:absolute before:inset-0">
{testimonial.name}
Expand Down
3 changes: 1 addition & 2 deletions apps/www/components/site-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@ export const FooterContent = ({ className, asSidePanel }: { className?: string;
className="size-8 rounded-full">
<Link
href="https://x.com/MeschacIrung/"
target="_blank"
target="_blank" rel="noopener noreferrer"
aria-label="x/twitter"
rel="noreferrer"
className="text-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down
6 changes: 2 additions & 4 deletions apps/www/components/site-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,8 @@ export const SiteHeader = ({ isWide = false }: { isWide?: boolean }) => {
className="size-8 rounded-full">
<Link
href="https://x.com/MeschacIrung/"
target="_blank"
target="_blank" rel="noopener noreferrer"
aria-label="x/twitter"
rel="noreferrer"
className="text-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down Expand Up @@ -188,9 +187,8 @@ export const SiteHeader = ({ isWide = false }: { isWide?: boolean }) => {
className="size-8 rounded-full">
<Link
href="https://github.com/tailark/blocks"
target="_blank"
target="_blank" rel="noopener noreferrer"
aria-label="GitHub"
rel="noreferrer"
className="text-sm">
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down
2 changes: 1 addition & 1 deletion apps/www/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
productionBrowserSourceMaps: true,
productionBrowserSourceMaps: false,
cacheComponents: true,
images: {
remotePatterns: [
Expand Down
22 changes: 11 additions & 11 deletions packages/dusk-kit/blocks/content/six/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,37 @@ export default function CommunitySection() {
<p className="mt-6">Harum quae dolore orrupti aut temporibus ariatur.</p>
</div>
<div className="mx-auto mt-12 flex max-w-lg flex-wrap justify-center gap-3">
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/1.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/2.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/3.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/4.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/5.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/6.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/7.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/1.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/8.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/9.jpg" loading="lazy" width={120} height={120} />
</Link>
<Link href="https://github.com/meschacirung" target="_blank" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<Link href="https://github.com/meschacirung" target="_blank" rel="noopener noreferrer" title="Méschac Irung" className="size-16 rounded-full border *:size-full *:rounded-full *:object-cover">
<img alt="John Doe" src="https://randomuser.me/api/portraits/men/10.jpg" loading="lazy" width={120} height={120} />
</Link>
</div>
Expand Down