mirror of
https://github.com/jellyfin/jellyfin.org.git
synced 2026-09-03 06:30:03 +03:00
19 lines
588 B
TypeScript
19 lines
588 B
TypeScript
import React from 'react';
|
|
import styles from './CallToAction.modules.css';
|
|
|
|
export default function CallToAction() {
|
|
return (
|
|
<div className={styles.cta}>
|
|
<div className='container'>
|
|
<div className='cta-inner'>
|
|
<h2 className='cta-title'>Get Started Now</h2>
|
|
<p className='cta-sub'>Check out our Getting Started guide to download and set up your server today.</p>
|
|
<a href='/downloads' className='button button--primary button--lg margin-top--lg'>
|
|
Download Jellyfin
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|