- Added a new layout component for the public offer document. - Created the public offer page in MDX format, detailing terms and conditions for service usage. - Removed the old offer page in TSX format. - Updated links for offer and support to a new shared component for better maintainability. - Integrated Tailwind CSS typography plugin for improved text styling.
18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
import { env } from '@/config/env';
|
|
|
|
export function OfferLink() {
|
|
return (
|
|
<a href={env.OFFER_URL} rel="noreferrer" target="_blank">
|
|
{env.OFFER_URL}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export function SupportLink() {
|
|
return (
|
|
<a href={env.SUPPORT_TELEGRAM_URL} rel="noreferrer" target="_blank">
|
|
{env.SUPPORT_TELEGRAM_URL}
|
|
</a>
|
|
);
|
|
}
|