//"use client" import styles from "./page.module.css" import {Footer, NavBar} from "@/app/util/wrapping_objects"; import React from 'react'; interface SectionProps { imgUrl: string; imgAlt: string; title: string; description: string; note: string; } export default function Features() { return ( <>

Features

) } export function ImageSection(props: SectionProps) { const { imgUrl, imgAlt, title, description , note} = props; return(

{title}

{imgAlt}/

{description}

{note}

) }