Commit 61cf8fa3 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(platforms): make platforms' websites and submit urls more prominent

+ show default podcast website (castopod) link first in links page
parent dff85168
Loading
Loading
Loading
Loading
Loading
+0 −0

File moved.

+0 −0

File moved.

+1 −15
Original line number Diff line number Diff line
@@ -75,13 +75,6 @@ class PlatformSeeder extends Seeder
                'home_url'   => 'http://castro.fm/',
                'submit_url' => 'https://castro.fm/support/link-to-your-podcast-in-castro',
            ],
            [
                'slug'       => 'chartable',
                'type'       => 'podcasting',
                'label'      => 'Chartable',
                'home_url'   => 'https://chartable.com/',
                'submit_url' => 'https://chartable.com/podcasts/submit',
            ],
            [
                'slug'       => 'deezer',
                'type'       => 'podcasting',
@@ -390,13 +383,6 @@ class PlatformSeeder extends Seeder
                'home_url'   => 'https://www.tsacdop.app/',
                'submit_url' => '',
            ],
            [
                'slug'       => 'zion',
                'type'       => 'podcasting',
                'label'      => 'Zion',
                'home_url'   => 'https://zion.fyi/',
                'submit_url' => 'https://guide.zion.fyi/zion/getting-started',
            ],
        ];

        $fundingData = [
@@ -611,7 +597,7 @@ class PlatformSeeder extends Seeder
                'type'       => 'social',
                'label'      => 'YouTube',
                'home_url'   => 'https://www.youtube.com/',
                'submit_url' => 'https://creatoracademy.youtube.com/page/home',
                'submit_url' => 'https://studio.youtube.com/',
            ],
            [
                'slug'       => 'x',
+1 −0
Original line number Diff line number Diff line
@@ -51,4 +51,5 @@ return [
        other {# persons}
    }',
    'persons_list' => 'Persons',
    'castopod_website' => 'Castopod (website)',
];
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ class Vite extends BaseConfig

    public string $assetsRoot = 'assets';

    public string $manifestFile = 'manifest.json';
    public string $manifestFile = '.vite/manifest.json';

    public string $manifestCSSFile = 'manifest-css.json';
}
Loading