You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
475 B
22 lines
475 B
import React from 'react'; |
|
import Header from './Header'; |
|
import Features from './Features'; |
|
import Responsive from './Responsive'; |
|
import Platforms from './Platforms'; |
|
import App from './App'; |
|
import GradiantText from './GradiantText'; |
|
|
|
function Public() { |
|
return ( |
|
<div className="w-full flex-1 px-2 pt-2 pb-6"> |
|
<Header /> |
|
<Features /> |
|
<Responsive /> |
|
<Platforms /> |
|
<GradiantText /> |
|
<App /> |
|
</div> |
|
) |
|
} |
|
|
|
export default Public;
|
|
|