- Updated environment variable names for consistency across the application. - Modified references in the deployment workflow, bot conversations, and web components to use the new variable names.
18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
import { env } from '@/config/env';
|
|
|
|
export function OfferLink() {
|
|
return (
|
|
<a href={env.URL_OFFER} rel="noreferrer" target="_blank">
|
|
{env.URL_OFFER}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export function SupportLink() {
|
|
return (
|
|
<a href={env.SUPPORT_TELEGRAM_URL} rel="noreferrer" target="_blank">
|
|
{env.SUPPORT_TELEGRAM_URL}
|
|
</a>
|
|
);
|
|
}
|