Skip to content

Instantly share code, notes, and snippets.

@ccfiel
Created June 29, 2022 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccfiel/e7a7f47688812e7842449270c1ec92e2 to your computer and use it in GitHub Desktop.
Save ccfiel/e7a7f47688812e7842449270c1ec92e2 to your computer and use it in GitHub Desktop.
index.js
import Head from 'next/head';
import { ThemeProvider } from 'styled-components';
import { theme } from 'common/theme/appclassic';
import { ResetCSS } from 'common/assets/css/style';
import Sticky from 'react-stickynode';
import Navbar from 'containers/AppClassic/Navbar';
import Banner from 'containers/AppClassic/Banner';
import KeyFeatures from 'containers/AppClassic/KeyFeatures';
import AppSlider from 'containers/AppClassic/AppSlider';
import AppSlider2 from 'containers/AppClassic/AppSlider2';
import Features from 'containers/AppClassic/Features';
import FeatureTab from 'containers/AppClassic/FeatureTab';
import PricingPolicy from 'containers/AppClassic/PricingPolicy';
import Industries from 'containers/AppClassic/Industries';
import OnlineOrder from 'containers/AppClassic/OnlineOrder';
import Testimonial from 'containers/AppClassic/Testimonial';
import DemoForm from 'containers/AppClassic/DemoForm';
import Footer from 'containers/AppClassic/Footer';
import GlobalStyle, {
AppWrapper,
ContentWrapper,
} from 'containers/AppClassic/appClassic.style';
const AppClassic = () => {
return (
<ThemeProvider theme={theme}>
<>
<Head>
<title>Free Cloud-Based Mobile POS System | KaHero</title>
<meta
name="Description"
content="KaHero is your partner for a convenient way to do business. Enable your business growth with a POS that goes with you!"
/>
<meta name="theme-color" content="#328196" />
<meta
name="keywords"
content="tablet pos, mobile pos, android pos, ios pos, pos, point of sales, cash register, sales analytics, kahero, quickbooks pos, quickbooks point of sale, free pos, free POS software"
/>
<script type="text/javascript">
{`
window.$crisp=[];window.CRISP_WEBSITE_ID="cc6fbea5-bf73-4077-bea1-31cb36d95c2d";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();
window.$crisp.push(["set", "session:segments", [["website"]]])
`}
</script>
<script
type="text/javascript"
src="https://static.leaddyno.com/js"
></script>
<script>
LeadDyno.key = "06161bfd567be6d2aba81cd779b48776767554fc";
LeadDyno.recordVisit(); LeadDyno.autoWatch();
</script>
<script>
{`(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WKQ3KL2');
`}
</script>
</Head>
{/* end of head */}
<ResetCSS />
<GlobalStyle />
{/* end of global and reset style */}
{/* start app classic landing */}
<AppWrapper>
<Sticky top={0} innerZ={9999} activeClass="sticky-active">
<Navbar />
</Sticky>
<ContentWrapper>
<Banner />
<KeyFeatures />
<AppSlider />
<Features />
<FeatureTab />
<AppSlider2 isMoneyManager={true} />
<OnlineOrder />
<PricingPolicy />
<Industries />
<Testimonial />
<DemoForm />
</ContentWrapper>
<Footer />
</AppWrapper>
{/* end of app classic landing */}
</>
</ThemeProvider>
);
};
export default AppClassic;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment