Universal links for the ATmosphere. Share ATProto content with anyone, let them choose where to view it.
at testing 32 lines 699 B view raw
1import Link from 'next/link'; 2 3export default function IntegrationPromo() { 4 return ( 5 <footer 6 style={{ 7 marginTop: '4rem', 8 paddingTop: '2rem', 9 borderTop: '1px solid var(--border-subtle)', 10 textAlign: 'center', 11 color: 'var(--text-tertiary)', 12 fontSize: '0.875rem', 13 }} 14 > 15 <p style={{ marginBottom: '0.5rem' }}> 16 Create your own shareable links 17 </p> 18 <Link 19 href="/integrate" 20 style={{ 21 color: 'var(--text-accent)', 22 textDecoration: 'underline', 23 textUnderlineOffset: '3px', 24 }} 25 > 26 Integrate aturi.to into your app 27 </Link> 28 </footer> 29 ); 30} 31 32