// core import React from "react"; // antd import { Typography, Divider, Button, Card } from "antd"; const { Title, Text } = Typography; // components import AppLayout from "../components/AppLayout"; import { T } from "antd/lib/upload/utils"; import './index.less' const App = () => (
Home Page
Nextjs with Ant Design & Less Go ahead and edit /pages/index.js, and see your changes here Useful Links
Quick Recap: Shared App Layout Shared/Common App Layout is located at{" "} /components/AppLayout
Sider/sidebar, header and footer are all in this file.

antd Less antd's Less file is present at /assets/antd-custom.less
Head over to{" "} antd's theming docs {" "} for a list of less variables.
If you dont wish to mess around with Less, just delete everything in the less file.
); export default App;