/* eslint-disable qwik/no-react-props */ /** @jsxImportSource react */ import { qwikify$ } from "@builder.io/qwik-react"; import { motion } from "framer-motion" import { ReactDisplay } from "@/react/display" import * as React from "react" // type Props = { // children?: React.ReactElement[] // } const transition = { type: "spring", stiffness: 100, damping: 15, restDelta: 0.001, duration: 0.01, } type Props = { children?: React.ReactNode; } export function ReactHeroSection({ children }: Props) { return ( <>
Your games. Your rules. Nestri lets you play games on your own terms — invite friends to join your gaming sessions, share your game library, and take even more control by hosting your own server. {children}
) } // export const ReactGpadAnimation = ({ index, children, className }: { className?: string, index: number, children?: React.ReactElement }) => { // return ( // // {children} // // ) // } // export const GpadAnimation = qwikify$(ReactGpadAnimation) export const HeroSection = qwikify$(ReactHeroSection)