This commit is contained in:
ehab-hassan
2024-09-26 14:42:11 +03:00
parent 4bc61a035f
commit bd9369d4f4
37 changed files with 52 additions and 46 deletions

View File

@@ -54,7 +54,7 @@ const communicationFeatures = [
},
]
export default function Featureshome() {
export async function getStaticProps() {
return (
<div className="overflow-hidden py-16 lg:py-24">
<div className="relative mx-auto max-w-xl px-6 lg:max-w-7xl lg:px-8">
@@ -232,3 +232,9 @@ export default function Featureshome() {
</div>
)
}
const Features = ({ data }) => {
return <div>Features Page</div>;
};
export default Features;