base con autenticacion, registro, modulo encuestas

This commit is contained in:
2025-06-16 12:02:22 -04:00
commit 475e0754df
411 changed files with 26265 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
import { ImageResponse } from 'next/og';
export const runtime = 'edge';
// Image metadata
export const alt = `Opengraph Image`;
export const size = {
width: 800,
height: 400,
};
export const contentType = 'image/png';
export default async function Image() {
return new ImageResponse(
(
<div
style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
fontSize: 24,
fontWeight: 600,
textAlign: 'left',
padding: 70,
color: 'red',
backgroundImage: 'linear-gradient(to right, #334d50, #cbcaa5)',
height: '100%',
width: '100%',
}}
>
<img
src={`http://localhost:3000/og-logo.png`}
alt="opengraph logo"
style={{
width: '400px',
height: '400px',
borderRadius: '50%',
objectFit: 'cover',
}}
/>
</div>
),
{
...size,
},
);
}