Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 36 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage


# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
104 changes: 36 additions & 68 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,68 +1,36 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br />
You will also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.<br />
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.<br />
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.<br />
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

### Analyzing the Bundle Size

This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

### Making a Progressive Web App

This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

### Advanced Configuration

This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

### Deployment

This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

### `npm run build` fails to minify

This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
307 changes: 307 additions & 0 deletions app/globals.css

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions app/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Inter } from 'next/font/google'
import './globals.css'

const inter = Inter({ subsets: ['latin'] })

export const metadata = {
title: 'Xmigrate',
description: 'Generated by create next app',
}

export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
}
44 changes: 44 additions & 0 deletions app/page.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
"use client"
// import React from 'react'
import Navbar from '@/components/Navbar'
import Hero from '@/components/Hero'
import Grid from '@/components/Grid'
import Flexbox from '@/components/Flexbox'
import Bottom from '@/components/Bottom'
import Faq from '@/components/Faq'
import Newsletter from '@/components/Newsletter'
import About from '@/components/About'
import Footer from '@/components/Footer'
import React, { useRef } from 'react';

const page = () => {
const newsletterRef = useRef();
return (
<div className='bg-color scroll-smooth'>
<div className="grad">
<div className="animation-wrapper">
<div className="particle particle-1"></div>
<div className="particle particle-2"></div>
{/* <div class="particle particle-3"></div> */}
{/* <div class="particle particle-4"></div> */}
{/* <div className="backgroundContainer"> */}
<Navbar />
<Hero />
<Grid />
<Flexbox />
{/* <Bottom /> */}
<Faq />
<div ref={newsletterRef}>
<Newsletter />
</div>
<About />
<Footer />
{/* </div> */}
</div>
</div>
</div>
)
}

export default page

Binary file not shown.
Binary file removed build/Assets/images/Azure.png
Binary file not shown.
Binary file removed build/Assets/images/Cloud.png
Binary file not shown.
Binary file removed build/Assets/images/Microsoft_Azure-Logo.wine.png
Binary file not shown.
Binary file removed build/Assets/images/Screen2.gif
Binary file not shown.
Binary file removed build/Assets/images/Screen3.png
Binary file not shown.
Binary file removed build/Assets/images/Xmigratelogo.png
Binary file not shown.
Binary file removed build/Assets/images/android-chrome-192x192.png
Binary file not shown.
Binary file removed build/Assets/images/android-chrome-512x512.png
Binary file not shown.
Binary file removed build/Assets/images/apple-touch-icon.png
Binary file not shown.
Binary file removed build/Assets/images/aws.png
Binary file not shown.
Binary file removed build/Assets/images/favicon-16x16.png
Binary file not shown.
Binary file removed build/Assets/images/favicon-32x32.png
Binary file not shown.
Binary file removed build/Assets/images/favicon.ico
Binary file not shown.
Binary file removed build/Assets/images/logo.png
Binary file not shown.
Binary file removed build/Assets/images/logoSm.gif
Binary file not shown.
Binary file removed build/Assets/images/logoSm.jpg
Binary file not shown.
Binary file removed build/Assets/images/logoSm.png
Binary file not shown.
Binary file removed build/Assets/images/screenshot1.png
Binary file not shown.
1 change: 0 additions & 1 deletion build/Assets/images/site.webmanifest

This file was deleted.

1 change: 0 additions & 1 deletion build/Assets/images/undraw_cloud_hosting.svg

This file was deleted.

Binary file removed build/Assets/images/xmigratelogo2.png
Binary file not shown.
13 changes: 0 additions & 13 deletions build/asset-manifest.json

This file was deleted.

1 change: 0 additions & 1 deletion build/index.html

This file was deleted.

20 changes: 0 additions & 20 deletions build/manifest.json

This file was deleted.

3 changes: 0 additions & 3 deletions build/robots.txt

This file was deleted.

9 changes: 0 additions & 9 deletions build/static/css/main.8825ea80.css

This file was deleted.

1 change: 0 additions & 1 deletion build/static/css/main.8825ea80.css.map

This file was deleted.

3 changes: 0 additions & 3 deletions build/static/js/main.1778a93d.js

This file was deleted.

1 change: 0 additions & 1 deletion build/static/js/main.1778a93d.js.map

This file was deleted.

84 changes: 84 additions & 0 deletions components/About.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
"use client";

import React from 'react'
import { motion } from "framer-motion";
import { useInView } from 'react-intersection-observer';
//import { Link } from 'react-scroll'
import Link from 'next/link';

const About = () => {
const { ref: t1, inView: aboutVisible1 } = useInView();
const { ref: t2, inView: aboutVisible2 } = useInView();
const { ref: t3, inView: aboutVisible3 } = useInView();
const { ref: t4, inView: aboutVisible4 } = useInView();
const { ref: t5, inView: aboutVisible5 } = useInView();
const { ref: t6, inView: aboutVisible6 } = useInView();
return (
<div>
<div className="flex flex-row items-stretch justify-between gap-5 px-5 max-md:flex-wrap max-md:justify-between mx-0 sm:mx-[125px] mt-[200px] select-none">
<div className="flex flex-col md:flex-row basis-[0%] gap-3 items-stretch self-start">
<motion.a ref={t2} initial={{ opacity: 0, y: -40 }} animate={aboutVisible2 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='#contact' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
Create Account
</motion.a>
<motion.a ref={t3} initial={{ opacity: 0, y: -40 }} animate={aboutVisible3 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='#contact' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
Sign In
</motion.a>
</div>

<div className='flex flex-col md:flex-row gap-5 items-start '>

<motion.a ref={t2} initial={{ opacity: 0, y: -40 }} animate={aboutVisible2 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='#home' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
Home
</motion.a>
<motion.a ref={t3} initial={{ opacity: 0, y: -40 }} animate={aboutVisible3 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='#home' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
About
</motion.a>
<motion.a ref={t4} initial={{ opacity: 0, y: -40 }} animate={aboutVisible4 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='#features' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
Features
</motion.a>
<motion.a ref={t5} initial={{ opacity: 0, y: -40 }} animate={aboutVisible5 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='https://docs.xmigrate.cloud/en/latest/' target='_blank' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
Docs
</motion.a>
<motion.a ref={t6} initial={{ opacity: 0, y: -40 }} animate={aboutVisible6 ? { opacity: 1, y: 0 } : { opacity: 0 }} transition={{ duration: 0.6 }} href='#contact' className="justify-center text-indigo-300 hover:text-indigo-200 text-lg leading-7 tracking-wide whitespace-nowrap cursor-pointer">
Contact
</motion.a>

{/* <div className="self-start max-md:max-w-full">
<div className="gap-5 flex max-md:items-stretch max-md:gap-0">
<div className="flex flex-col items-stretch w-[42%] max-md:w-full max-md:ml-0">
<div className="flex grow flex-col items-stretch max-md:mt-10">
<div className="justify-center text-xl leading-8 tracking-wide bg-clip-text whitespace-nowrap text-indigo-100">
Navigation
</div>
<div className="justify-center text-indigo-300 text-lg leading-7 tracking-wide whitespace-nowrap mt-11 max-md:mt-10">
Latest Insights
</div>
<div className="justify-center text-indigo-300 text-lg leading-7 tracking-wide whitespace-nowrap mt-6">
Contact Us
</div>
</div>
</div>

</div>
</div>
<div className="items-stretch w-[58%] max-md:w-full max-md:ml-0">
<div className="flex grow flex-col items-stretch max-md:mt-10">
<div className="justify-center text-xl leading-8 tracking-wide bg-clip-text whitespace-nowrap text-indigo-100">
Utility
</div>
<div className="justify-center text-indigo-300 text-lg leading-7 tracking-wide whitespace-nowrap mt-11 max-md:mt-10">
Terms and Conditions
</div>
<div className="justify-center text-indigo-300 text-lg leading-7 tracking-wide whitespace-nowrap mt-7">
Privacy policy
</div>
</div>
</div> */}
</div>
</div>
<hr className=" h-[2px] mx-[120px] bg-gray-100 border-0 my-12 dark:bg-gray-700 " />
</div>
)
}

export default About
Loading