added details to app download page

This commit is contained in:
2023-12-20 21:15:27 -08:00
parent f109e89f96
commit 11b4713db5
4 changed files with 128 additions and 24 deletions
+6 -4
View File
@@ -1,9 +1,11 @@
import React from 'react'
import HomeOneHeader from '../HomeOne/HomeOneHeader';
import AppDownloadDetails from './AppDownloadDetails';
export default function AppDownload() {
return (
<div>
<div className='vh-100 d-flex justify-content-center align-items-center'>App Download Content Here</div>
</div>
<>
<HomeOneHeader showLogoOnly={true} />
<AppDownloadDetails />
</>
)
}