Skip to main content
Lyrics of Vande Mataram
वन्दे मातरम्
सुजलां सुफलां मलयजशीतलाम्
शस्यशामलां मातरम् ।
शुभ्रज्योत्स्नापुलकितयामिनीं
फुल्लकुसुमितद्रुमदलशोभिनीं
सुहासिनीं सुमधुर भाषिणीं
सुखदां वरदां मातरम् ।। १ ।। वन्दे मातरम् ।
कोटि-कोटि-कण्ठ-कल-कल-निनाद-कराले
कोटि-कोटि-भुजैर्धृत-खरकरवाले,
अबला केन मा एत बले ।
बहुबलधारिणीं नमामि तारिणीं
रिपुदलवारिणीं मातरम् ।। २ ।। वन्दे मातरम् ।
तुमि विद्या, तुमि धर्म
तुमि हृदि, तुमि मर्म
त्वं हि प्राणा: शरीरे
बाहुते तुमि मा शक्ति,
हृदये तुमि मा भक्ति,
तोमारई प्रतिमा गडि
मन्दिरे-मन्दिरे मातरम् ।। ३ ।। वन्दे मातरम् ।
त्वं हि दुर्गा दशप्रहरणधारिणी
कमला कमलदलविहारिणी
वाणी विद्यादायिनी, नमामि त्वाम्
नमामि कमलां अमलां अतुलां
सुजलां सुफलां मातरम् ।। ४ ।। वन्दे मातरम् ।
श्यामलां सरलां सुस्मितां भूषितां
धरणीं भरणीं मातरम् ।। ५ ।। वन्दे मातरम् ।।

Translation by Shree Aurobindo
Mother, I bow to thee!
Rich with thy hurrying streams,
bright with orchard gleams,
Cool with thy winds of delight,
Dark fields waving Mother of might,
Mother free.

Glory of moonlight dreams,
Over thy branches and lordly streams,
Clad in thy blossoming trees,
Mother, giver of ease
Laughing low and sweet!
Mother I kiss thy feet,
Speaker sweet and low!
Mother, to thee I bow.

Who hath said thou art weak in thy lands
When the sword flesh out in the seventy million hands
And seventy million voices roar
Thy dreadful name from shore to shore?
With many strengths who art mighty and stored,
To thee I call Mother and Lord!
Though who savest, arise and save!
To her I cry who ever her foeman drove
Back from plain and Sea
And shook herself free.

Thou art wisdom, thou art law,
Thou art heart, our soul, our breath
Though art love divine, the awe
In our hearts that conquers death.
Thine the strength that nervs the arm,
Thine the beauty, thine the charm.
Every image made divine
In our temples is but thine.

Thou art Durga, Lady and Queen,
With her hands that strike and her
swords of sheen,
Thou art Lakshmi lotus-throned,
And the Muse a hundred-toned,
Pure and perfect without peer,
Mother lend thine ear,
Rich with thy hurrying streams,
Bright with thy orchard gleems,
Dark of hue O candid-fair

In thy soul, with jewelled hair
And thy glorious smile divine,
Lovilest of all earthly lands,
Showering wealth from well-stored hands!
Mother, mother mine!
Mother sweet, I bow to thee,
Mother great and free!


See also:

Comments

Popular posts from this blog

Next.js vs react

Next.js builds upon React and offers several advantages over using React alone: Key Advantages of Next.js over React: Server-Side Rendering (SSR) and Static Site Generation (SSG): Next.js provides built-in support for SSR and SSG, leading to faster initial page loads, improved SEO, and better performance for content-heavy applications. Simplified Routing: Next.js offers a file-based routing system, making it easier to manage routing configurations compared to React, where you might need to use additional libraries like React Router. Automatic Code Splitting: Next.js automatically splits your JavaScript code into smaller chunks, optimizing page load times by loading only the necessary code for each page. API Routes: Next.js allows you to easily create serverless API endpoints within your Next.js project, simplifying backend integration. Image Optimization: Next.js includes an optimized image component that automat...

React JS Basics

  What are side effects in React? In React, side effects are operations that interact with external systems or cause changes outside the component's rendering process. These can include: Data fetching: Retrieving data from APIs or other sources. Subscriptions: Setting up listeners for events or data changes. Timers: Creating timers for delayed actions or animations. DOM manipulation: Directly modifying the DOM (rarely used in modern React with declarative approach). Why use useEffect ? In class-based components, you would typically use lifecycle methods like componentDidMount , componentDidUpdate , and componentWillUnmount to handle side effects. Functional components don't have these methods directly. The useEffect Hook provides a way to manage side effects in functional components. It allows you to run a function after a component renders (or re-renders) and optionally clean up any resources created by that function before the component unmounts. How does useEffect wor...

GIT Branching strategies

  What are GIT branching strategies? GIT branching strategies are patterns or approaches that tech teams use to organize & manage their code through different branches in a GIT system. Each strategy defines the rules & guidelines for the creation, naming & merging the branches for facilitating collaboration, stability, & release management. In this article, we're going to discuss  git branching strategy best use cases, hands-on on git, as well as the git branching strategies we follow. Along with recommendations on how to use git to accomplish work in a consistent and productive manner. ‍ GIT What are the different GIT branching strategies? Here are some commonly used git branching strategies: Master branch This is the  main  branch and one of the repository in which we have the latest stable code of production.   General rules: - Access to direct merge is restricted - Best practice is to create a CI/CD pipeline to merge code into this ...