Skip to content

Commit ae39375

Browse files
committed
Update sponsors
1 parent a5f793d commit ae39375

File tree

14 files changed

+56
-254
lines changed

14 files changed

+56
-254
lines changed

app/Http/Controllers/Plugins/ListPluginsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __invoke(GetPluginsListData $getPluginsListData)
3535
'pluginsCount' => Plugin::count(),
3636
'plugins' => $getPluginsListData(),
3737
'featuredPlugins' => $getPluginsListData([
38-
'filament-themes',
38+
'zepfietje-themes',
3939
'kenneth-sese-advanced-tables',
4040
'ralphjsmit-media-library-manager',
4141
]),

app/Http/Controllers/Plugins/ViewPluginController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __invoke(GetPluginsListData $getPluginsListData, string $plugin)
2222
->image($plugin->getImageUrl() ?? $plugin->getThumbnailUrl());
2323

2424
$featuredPlugins = [
25-
'filament-themes',
25+
'zepfietje-themes',
2626
'kenneth-sese-advanced-tables',
2727
'ralphjsmit-media-library-manager',
2828
];
21.5 KB
Loading

content/authors/zepfietje.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Zep Fietje
3+
slug: zepfietje
4+
github_url: https://github.com/zepfietje
5+
twitter_url: https://x.com/zepfietje
6+
---
7+
8+
Designer, software developer, musician, and solopreneur.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Themes
3-
slug: filament-themes
4-
author_slug: filament
3+
slug: zepfietje-themes
4+
author_slug: zepfietje
55
categories: [form-builder, panel-builder, table-builder, theme]
66
url: https://filamentthemes.com?utm_source=filament&utm_medium=referral&utm_campaign=plugin&utm_content=button
77
description: Style your Filament applications without hiring a designer or learning CSS
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Support\Facades\DB;
5+
6+
return new class extends Migration
7+
{
8+
/**
9+
* Run the migrations.
10+
*/
11+
public function up(): void
12+
{
13+
DB::table('stars')
14+
->where('starrable_id', 'filament-themes')
15+
->update(['starrable_id' => 'zepfietje-themes']);
16+
}
17+
};

docs/src/components/Footer.astro

Lines changed: 22 additions & 226 deletions
Large diffs are not rendered by default.

docs/src/layouts/BaseLayout.astro

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -130,23 +130,13 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
130130
x-data="{
131131
banner: null,
132132
}"
133-
x-init="banner = Math.floor(Math.random() * 4)"
133+
x-init="banner = Math.floor(Math.random() * 2)"
134134
class="max-w-9xl flex items-center justify-center mx-auto px-4 py-1.5 sm:px-6 lg:px-8 text-sm text-center text-white min-h-9"
135135
>
136136
<span x-show="banner === 0">
137137
Looking for dedicated help with your Filament project? Work with <a href="https://kirschbaumdevelopment.com?ref=filamentphp.com" target="_blank" class="underline">Kirschbaum</a>, the official Filament-partnered development agency.
138138
</span>
139-
<span
140-
x-show="banner === 1"
141-
>
142-
Build faster with <a href="https://whizzy.dev?utm_source=filament&amp;utm_medium=referral&amp;utm_campaign=partner&amp;utm_content=banner" target="_blank" class="underline">Whizzy</a>.
143-
</span>
144-
<span
145-
x-show="banner === 2"
146-
>
147-
Style your applications with <a href="https://filamentthemes.com?utm_source=filament&amp;utm_medium=referral&amp;utm_campaign=partner&amp;utm_content=banner" target="_blank" class="underline">Filament Themes</a>.
148-
</span>
149-
<span x-show="banner === 3">
139+
<span x-show="banner === 2">
150140
Love Filament? We'd really appreciate your <a href="https://github.com/filamentphp/filament?sponsor=1" target="_blank" class="underline">sponsorship</a> to fund the maintenance and support of the project.
151141
</span>
152142
</div>
12.6 KB
Loading

0 commit comments

Comments
 (0)